{
    "$schema": "https://www.schemastore.org/package.json",
    "name": "eslint-plugin-file-progress-2",
    "version": "5.1.8",
    "private": false,
    "description": "ESLint plugin to print file progress",
    "keywords": [
        "eslint",
        "eslintplugin",
        "eslint-plugin",
        "eslint-plugin-file-progress",
        "eslint-plugin-file-progress-2",
        "eslint-progress",
        "progress"
    ],
    "homepage": "https://github.com/Nick2bad4u/eslint-plugin-file-progress-2#readme",
    "bugs": {
        "url": "https://github.com/Nick2bad4u/eslint-plugin-file-progress-2/issues",
        "email": "20943337+Nick2bad4u@users.noreply.github.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Nick2bad4u/eslint-plugin-file-progress-2.git"
    },
    "license": "MIT",
    "author": "Nick2bad4u <20943337+Nick2bad4u@users.noreply.github.com> (https://github.com/Nick2bad4u)",
    "contributors": [
        {
            "name": "sibiraj-s",
            "url": "https://github.com/sibiraj-s"
        },
        {
            "name": "Nick2bad4u",
            "email": "20943337+Nick2bad4u@users.noreply.github.com",
            "url": "https://github.com/Nick2bad4u"
        }
    ],
    "sideEffects": false,
    "type": "module",
    "exports": {
        ".": {
            "import": {
                "types": "./dist/index.d.ts",
                "default": "./dist/index.js"
            },
            "require": {
                "types": "./dist/index.d.cts",
                "default": "./dist/index.cjs"
            },
            "default": "./dist/index.js"
        },
        "./package.json": "./package.json"
    },
    "main": "./dist/index.cjs",
    "module": "./dist/index.js",
    "types": "./dist/index.d.cts",
    "files": [
        "dist",
        "docs/rules/**",
        "CHANGELOG.md"
    ],
    "workspaces": [
        "docs/docusaurus",
        "packages/*"
    ],
    "scripts": {
        "build": "npx tsc -b tsconfig.build.json --force && npm run build:cjs",
        "build:cjs": "node scripts/write-cjs-entry.mjs",
        "build:clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
        "build:eslint-inspector": "eslint-config-inspector build --outDir \"docs/docusaurus/static/eslint-inspector\" --base \"/eslint-plugin-file-progress-2/eslint-inspector/\"",
        "build:eslint-inspector:local": "eslint-config-inspector",
        "build:stylelint-inspector": "stylelint-config-inspector build --outDir \"docs/docusaurus/static/stylelint-inspector\" --base \"/eslint-plugin-file-progress-2/stylelint-inspector/\"",
        "build:stylelint-inspector:local": "stylelint-config-inspector",
        "changelog:generate": "git cliff --config node_modules/gitcliff-config-nick2bad4u/cliff.toml --github-repo Nick2bad4u/eslint-plugin-file-progress-2 --output CHANGELOG.md",
        "changelog:preview": "git cliff --config node_modules/gitcliff-config-nick2bad4u/cliff.toml --github-repo Nick2bad4u/eslint-plugin-file-progress-2 --unreleased",
        "changelog:release-notes": "git cliff --config node_modules/gitcliff-config-nick2bad4u/cliff.toml --github-repo Nick2bad4u/eslint-plugin-file-progress-2 --current",
        "check": "npm run lint:all && npm run typecheck && npm run test",
        "clean:cache": "node scripts/clean-paths.mjs dist coverage cache .cache .vite .turbo",
        "clean:cache:coverage": "node scripts/clean-paths.mjs coverage .coverage",
        "clean:cache:dist": "node scripts/clean-paths.mjs dist release",
        "clean:cache:eslint": "node scripts/clean-paths.mjs .cache/.eslintcache",
        "clean:cache:ncu": "node scripts/clean-paths.mjs .cache/.ncu-cache.json",
        "clean:cache:prettier": "node scripts/clean-paths.mjs .cache/.prettier-cache .prettier-cache .prettiercache",
        "clean:cache:stryker": "node scripts/clean-paths.mjs .stryker-tmp",
        "clean:cache:stylelint": "node scripts/clean-paths.mjs .cache/stylelintcache stylelintcache .stylelintcache",
        "clean:cache:temp": "node scripts/clean-paths.mjs .temp --ensure-dir=.temp",
        "clean:cache:typescript": "node scripts/clean-paths.mjs .cache/builds --tsbuildinfo-under=.cache",
        "clean:cache:vite": "node scripts/clean-paths.mjs .cache/vite .cache/vitest .cache/vitest-zero-coverage .cache/vite-zero-coverage",
        "clean:database": "node -e \"const fs=require('node:fs'); const path=require('node:path'); const appData=process.env.APPDATA; if(appData){fs.rmSync(path.join(appData,'uptime-watcher','uptime-watcher.sqlite'),{force:true});}\"",
        "clean:docs": "node scripts/clean-paths.mjs docs/docusaurus/.docusaurus docs/docusaurus/build docs/docusaurus/site-docs/developer/api",
        "clean:docusaurus": "npm run clean:docs && npm run --workspace docs/docusaurus clear",
        "commit": "npx -y git-cz",
        "coverage": "npm run test:coverage",
        "docs:api": "npm run --workspace docs/docusaurus docs:api",
        "docs:api:local": "npm run --workspace docs/docusaurus docs:api:local",
        "docs:build": "npm run --workspace docs/docusaurus build",
        "docs:build:local": "npm run --workspace docs/docusaurus build:local",
        "docs:check-links": "npm run docs:api && node ./scripts/check-doc-links.mjs",
        "docs:check-site-contract": "node packages/docusaurus-site-contract/cli.mjs --config docs/docusaurus/site-contract.config.mjs",
        "docs:demos:options": "npx cross-env NO_COLOR=1 node scripts/generate-preset-demos.mjs --target=options",
        "docs:demos:options:check": "npx cross-env NO_COLOR=1 node scripts/generate-preset-demos.mjs --target=options --check",
        "docs:demos:presets": "npx cross-env NO_COLOR=1 node scripts/generate-preset-demos.mjs",
        "docs:demos:presets:check": "npx cross-env NO_COLOR=1 node scripts/generate-preset-demos.mjs --check",
        "docs:devtools:metadata": "node scripts/generate-devtools-workspace-metadata.mjs",
        "docs:serve": "npm run --workspace docs/docusaurus serve",
        "docs:site-contract:init": "node packages/docusaurus-site-contract/cli.mjs init --root . --skip-vendor-package",
        "docs:start": "npm run --workspace docs/docusaurus start",
        "docs:start:devtools": "npm run docs:devtools:metadata && npm run docs:api:local && npm run --workspace docs/docusaurus start:devtools",
        "docs:toc": "npx remark docs --use remark-toc --output",
        "docs:typecheck": "npm run --workspace docs/docusaurus typecheck",
        "docs:typedoc": "npm run docs:api",
        "docs:typedoc:local": "npm run docs:api:local",
        "knip": "npx -y cross-env NODE_OPTIONS=--max_old_space_size=4096 NODE_NO_WARNINGS=1 npx -y knip -c knip.config.ts --include-libs --cache --cache-location .cache/knip --tsConfig tsconfig.json",
        "lint": "npx -y cross-env NODE_OPTIONS=--max_old_space_size=16384 npx -y eslint --cache --cache-strategy content --cache-location .cache/.eslintcache",
        "lint:action": "npm run lint:actions",
        "lint:actions": "actionlint -color -shellcheck= -pyflakes=",
        "lint:all": "npm run lint && npm run lint:css && npm run lint:prettier && npm run lint:remark && npm run lint:package && npm run lint:gitleaks && npm run lint:secretlint && npm run lint:yaml && npm run lint:yamllint && npm run lint:actions && npm run lint:circular",
        "lint:all:fix": "npm run lint:fix && npm run lint:remark:fix && npm run lint:css:fix && npm run lint:prettier:fix && npm run lint:remark && npm run lint:package && npm run lint:secretlint && npm run lint:yaml:fix && npm run lint:yamllint && npm run lint:actions && npm run lint:circular",
        "lint:all:fix:quiet": "npm run lint:fix:quiet && npm run lint:css:fix && npm run lint:prettier:fix && npm run lint:remark && npm run lint:package && npm run lint:secretlint && npm run lint:yaml:fix && npm run lint:yamllint && npm run lint:actions && npm run lint:circular",
        "lint:circular": "dependency-cruise --config dependency-cruiser.config.mjs src",
        "lint:compat:eslint9": "node scripts/eslint9-compat-smoke.mjs",
        "lint:config:build": "npm run build:eslint-inspector",
        "lint:config:inspect": "npx -y eslint --inspect-config",
        "lint:css": "npx -y stylelint --cache --config stylelint.config.mjs --cache-strategy content --cache-location .cache/stylelintcache \"src/**/*.{css,scss,sass,html,js,jsx,ts,tsx}\" \"docs/**/*.{css,scss,sass,html,js,jsx,ts,tsx}\" --custom-formatter stylelint-formatter-pretty && echo \"Stylelint done!\"",
        "lint:css:fix": "npx -y stylelint --cache --config stylelint.config.mjs --cache-strategy content --cache-location .cache/stylelintcache \"src/**/*.{css,scss,sass,html,js,jsx,ts,tsx}\" \"docs/**/*.{css,scss,sass,html,js,jsx,ts,tsx}\" --custom-formatter stylelint-formatter-pretty --fix && echo \"Stylelint done!\"",
        "lint:depcheck": "npm run knip",
        "lint:deps": "npm run knip",
        "lint:dupes": "npx jscpd src/ --config node_modules/jscpd-config-nick2bad4u/jscpd.json",
        "lint:dupes:all": "npx jscpd src/ --config node_modules/jscpd-config-nick2bad4u/jscpd.json --min-lines 3",
        "lint:dupes:skiplocal": "npx jscpd src/ --skipLocal --config node_modules/jscpd-config-nick2bad4u/jscpd.json",
        "lint:dupes:skiplocal:all": "npx jscpd src/ --skipLocal --config node_modules/jscpd-config-nick2bad4u/jscpd.json --min-lines 3",
        "lint:duplicates": "npm run lint:dupes",
        "lint:exports": "npx ts-unused-exports tsconfig.json src/index.ts --excludePathsFromReport=index.ts",
        "lint:fix": "npx -y cross-env NODE_OPTIONS=--max_old_space_size=16384 npx -y eslint --cache --cache-strategy content --cache-location .cache/.eslintcache --fix",
        "lint:fix:quiet": "npx -y cross-env ESLINT_PROGRESS=off NODE_OPTIONS=--max_old_space_size=16384 npx -y eslint --cache --cache-strategy content --cache-location .cache/.eslintcache --fix && echo \"Eslint fix done!\"",
        "lint:gitleaks": "gitleaks dir --config .gitleaks.toml .",
        "lint:grype": "grype . --name eslint-plugin-file-progress-2",
        "lint:jscpd": "npx jscpd --config node_modules/jscpd-config-nick2bad4u/jscpd.json",
        "lint:knip": "npm run knip",
        "lint:knip:exports": "npm run knip -- --include exports,nsExports,classMembers,types,nsTypes,enumMembers,duplicates",
        "lint:knip:unused:exports": "npm run knip -- --dependencies --exports",
        "lint:lychee": "lychee --config node_modules/lychee-config-nick2bad4u/lychee.toml .",
        "lint:lychee:smoke": "lychee --config node_modules/lychee-config-nick2bad4u/lychee.toml --dump-inputs README.md",
        "lint:metrics": "npm run sloc",
        "lint:node-version-files": "node scripts/sync-node-version-files.mjs --check",
        "lint:package": "npm run lint:node-version-files && npm run lint:package-sort && npm run lint:packagelintrc && echo \"Package.json lint done!\"",
        "lint:package:strict": "npm run lint:node-version-files && npm run lint:package-sort && npm run lint:package-check && npm run lint:packagelintrc && echo \"Package.json lint done!\"",
        "lint:package-check": "npx -y publint && npx attw --pack .",
        "lint:package-check:strict": "npx -y publint && npx attw --pack . --profile strict",
        "lint:package-json": "npx npmPkgJsonLint . --config .npmpackagejsonlintrc.json",
        "lint:package-sort": "npx -y sort-package-json \"./package.json\" \"./docs/docusaurus/package.json\"",
        "lint:package-sort-check": "npx -y sort-package-json --check \"./package.json\" \"./docs/docusaurus/package.json\"",
        "lint:packagelintrc": "npx -y npm-package-json-lint . --configFile .npmpackagejsonlintrc.json",
        "lint:prettier": "npx -y prettier . --log-level warn --cache --cache-location=.cache/.prettier-cache --cache-strategy=content --check",
        "lint:prettier:fix": "npx -y prettier . --log-level warn --cache --cache-location=.cache/.prettier-cache --cache-strategy=content --write",
        "lint:publint": "npx -y publint",
        "lint:quiet": "npx -y cross-env ESLINT_PROGRESS=nofile NODE_OPTIONS=--max_old_space_size=16384 npx -y eslint --cache --cache-strategy content --cache-location .cache/.eslintcache && echo \"Eslint done!\"",
        "lint:remark": "npx remark . --frail --ignore-path .remarkignore",
        "lint:remark:fix": "npx remark . --ignore-path .remarkignore --output",
        "lint:secretlint": "npx secretlint --secretlintrc .secretlintrc.cjs --secretlintignore .secretlintignore \"./*\" \".vscode/**\" \"assets/**\" \"src/**\" \"electron/**\" \"shared/**\" \"config/**\" \"scripts/**\" \"playwright/**\" \"storybook/**\" \".storybook\" \"tests/**\" \"benchmarks/**\" \".devin/**\" \"public/**\" \".github/**\" \"docs/Architecture/**\" \"docs/*\" \"docs/assets/**\" \"docs/Guides/**\" \"docs/Testing/**\" \"docs/TSDoc/**\" \"docs/docusaurus/src/**\" \"docs/docusaurus/static/**\" \"docs/docusaurus/blog/**\" \"docs/docusaurus/docs/**\" \"docs/docusaurus/docs/*\"",
        "lint:secrets": "npx detect-secrets scan",
        "lint:unused": "npm run knip -- --include unlisted,unresolved,duplicates",
        "lint:unused-deps": "npm run knip -- --dependencies",
        "lint:yaml": "npx -y cross-env NODE_OPTIONS=--max_old_space_size=16384 npx eslint --cache --cache-strategy content --cache-location .cache/.eslintcache \"**/*.{yml,yaml}\" && echo \"YAML lint done!\"",
        "lint:yaml:fix": "npx -y cross-env NODE_OPTIONS=--max_old_space_size=16384 npx -y eslint --cache --cache-strategy content --cache-location .cache/.eslintcache --fix \"**/*.{yml,yaml}\" && echo \"YAML lint (fix) done!\"",
        "lint:yamllint": "yamllint -c .yamllint .",
        "open:coverage": "npx open-cli coverage/index.html",
        "prepack": "npm run build",
        "prepublishOnly": "npm run release:check",
        "publint": "npx publint",
        "release:check": "npm run release:verify",
        "release:verify": "npx cross-env NODE_OPTIONS= npm run build && npx cross-env NODE_OPTIONS= npm run docs:api && npx cross-env NODE_OPTIONS= npm run lint:all && npx cross-env NODE_OPTIONS= npm run typecheck && npx cross-env NODE_OPTIONS= VITEST_TYPECHECK=false npm run test && npx cross-env NODE_OPTIONS= npm run sync:docs && npx cross-env NODE_OPTIONS= npm run docs:check-links && npx cross-env NODE_OPTIONS= npm run docs:demos:presets:check && npx cross-env NODE_OPTIONS= npm run docs:demos:options:check && npx cross-env NODE_OPTIONS= npm pack --dry-run",
        "remark:fix": "npx remark --rc-path .remarkrc.mjs --silently-ignore --ignore-path .remarkignore --frail --quiet --output -- \"*.{md,mdx}\" \"docs/**/*.{md,mdx}\"",
        "remark:test-config": "npx remark --rc-path .remarkrc.mjs --silently-ignore --ignore-path .remarkignore --frail \"README.md\"",
        "sync:docs": "npm run sync:readme-rules-table && npm run sync:presets-rules-matrix",
        "sync:docs:write": "npm run build && npm run sync:readme-rules-table:write && npm run sync:presets-rules-matrix:write",
        "sync:node-version-files": "node scripts/sync-node-version-files.mjs",
        "sync:peer-eslint-range": "node scripts/sync-peer-eslint-range.mjs",
        "sync:presets-rules-matrix": "node scripts/sync-presets-rules-matrix.mjs",
        "sync:presets-rules-matrix:write": "node scripts/sync-presets-rules-matrix.mjs --write",
        "sync:readme-rules-table": "node scripts/sync-readme-rules-table.mjs",
        "sync:readme-rules-table:update": "npm run sync:docs:write",
        "sync:readme-rules-table:write": "node scripts/sync-readme-rules-table.mjs --write",
        "pretest": "npm run build",
        "test": "npx vitest run",
        "test:ci": "npx cross-env CI=true npx vitest run --reporter=default",
        "test:coverage": "npx vitest run --coverage --reporter=default",
        "test:coverage:detailed": "npx vitest run --coverage --reporter=verbose",
        "test:coverage:minimal": "npx vitest run --coverage --reporter=dot",
        "test:coverage:open": "npm run test:coverage && npm run open:coverage",
        "test:coverage:quiet": "npx vitest run --coverage --reporter=default --silent",
        "test:coverage:verbose": "npx vitest run --coverage --reporter=verbose",
        "test:detailed": "npm run test:verbose",
        "test:minimal": "npx vitest run --reporter=dot",
        "test:open": "npm run test:coverage:open",
        "test:quiet": "npx vitest run --reporter=default --silent",
        "test:serial": "npx cross-env MAX_THREADS=1 npx vitest run",
        "test:stryker": "npx stryker run --ignoreStatic --concurrency 12 --incrementalFile .cache/stryker/incremental-fast.json",
        "test:stryker:ci": "npx cross-env CI=true npx stryker run --ignoreStatic --concurrency 2 --incrementalFile .cache/stryker/incremental-fast-ci.json",
        "test:stryker:full": "npx stryker run --concurrency 12 --incrementalFile .cache/stryker/incremental-full.json",
        "test:stryker:full:ci": "npx cross-env CI=true npx stryker run --concurrency 2 --incrementalFile .cache/stryker/incremental-full-ci.json",
        "test:verbose": "npx vitest run --reporter=verbose",
        "test:watch": "npx vitest",
        "typecheck": "npx tsc -p tsconfig.json --noEmit && npx tsc -p tsconfig.build.json --noEmit && npx tsc -p tsconfig.eslint.json --noEmit && npx tsc -p tsconfig.js.json --noEmit && npm run --workspace docs/docusaurus typecheck",
        "typecheck:all": "npm run typecheck",
        "types:update": "npx typesync",
        "update-actions": "npx actions-up --yes --style sha --quiet",
        "update-all": "npm run update-actions && npm run update-deps",
        "update-deps": "npx ncu --configFileName .ncurc.workspaces.json --configFilePath node_modules/ncu-config-nick2bad4u && npm run sync:peer-eslint-range && npm update --workspaces && npm install",
        "verify:readme-rules-table": "npm run build && npm run sync:readme-rules-table"
    },
    "dependencies": {
        "@typescript-eslint/eslint-plugin": "^8.67.0",
        "@typescript-eslint/parser": "^8.67.0",
        "nanospinner": "^1.2.2",
        "picocolors": "^1.1.1",
        "ts-extras": "^1.3.0",
        "type-fest": "^5.8.0"
    },
    "devDependencies": {
        "@arethetypeswrong/cli": "^0.18.5",
        "@commitlint/cli": "^21.2.1",
        "@commitlint/config-conventional": "^21.2.0",
        "@csstools/stylelint-formatter-github": "^2.0.0",
        "@double-great/remark-lint-alt-text": "^1.1.1",
        "@eslint/config-inspector": "^3.2.0",
        "@microsoft/tsdoc-config": "^0.18.1",
        "@stryker-ignorer/console-all": "^0.3.2",
        "@stryker-mutator/core": "^9.6.1",
        "@stryker-mutator/typescript-checker": "^9.6.1",
        "@stryker-mutator/vitest-runner": "^9.6.1",
        "@types/htmlhint": "^1.1.5",
        "@types/node": "^26.2.0",
        "@types/sloc": "^0.2.3",
        "@typescript-eslint/rule-tester": "^8.67.0",
        "@vitest/coverage-v8": "^4.1.10",
        "@vitest/ui": "^4.1.10",
        "actionlint": "^2.0.6",
        "c8": "^12.0.0",
        "cognitive-complexity-ts": "^0.8.2",
        "commitlint": "^21.2.1",
        "commitlint-config-gitmoji": "^2.3.1",
        "cross-env": "^10.1.0",
        "dependency-cruiser": "^18.2.0",
        "detect-secrets": "^1.0.6",
        "esbuild": "^0.28.2",
        "eslint": "^10.8.1",
        "eslint-config-nick2bad4u": "^13.1.2",
        "eslint-formatter-unix": "^9.0.1",
        "eslint-rule-benchmark": "^0.8.0",
        "fast-check": "^4.9.0",
        "git-cliff": "^2.13.1",
        "gitcliff-config-nick2bad4u": "^1.4.0",
        "gitleaks-config-nick2bad4u": "^1.0.4",
        "htmlhint": "^1.9.2",
        "husky": "^9.1.7",
        "jscpd": "^5.0.14",
        "jscpd-config-nick2bad4u": "^1.1.0",
        "knip": "^6.32.1",
        "leasot": "^14.4.0",
        "lychee-config-nick2bad4u": "^2.0.0",
        "markdown-link-check": "^3.15.0",
        "ncu-config-nick2bad4u": "^0.2.1",
        "npm-check-updates": "^23.0.2",
        "npm-package-json-lint": "^10.4.1",
        "npm-package-json-lint-config-nick2bad4u": "^1.0.4",
        "prettier": "^3.9.6",
        "prettier-config-nick2bad4u": "^2.0.1",
        "publint": "^0.3.23",
        "rehype-katex": "^7.0.1",
        "remark": "^15.0.1",
        "remark-cli": "^12.0.1",
        "remark-config-nick2bad4u": "^1.1.3",
        "secretlint": "^13.0.4",
        "secretlint-config-nick2bad4u": "^1.1.2",
        "sloc": "^0.3.2",
        "sort-package-json": "^4.0.0",
        "storybook": "^10.5.7",
        "stylelint": "^17.14.1",
        "stylelint-config-inspector": "^2.3.4",
        "stylelint-config-nick2bad4u": "^2.1.0",
        "stylelint-formatter-pretty": "^4.0.1",
        "ts-unused-exports": "^11.0.1",
        "tsdoc-config-nick2bad4u": "^1.0.6",
        "tsx": "^4.23.12",
        "typedoc": "^0.28.20",
        "typedoc-config-nick2bad4u": "^2.0.3",
        "typescript": "^6.0.3",
        "typescript-eslint": "^8.67.0",
        "typesync": "^0.14.3",
        "vfile": "^6.0.3",
        "vite": "^8.2.1",
        "vite-tsconfig-paths": "^6.1.1",
        "vitest": "^4.1.10",
        "yamllint-config-nick2bad4u": "^1.1.1",
        "yamllint-js": "^0.2.4"
    },
    "peerDependencies": {
        "eslint": "^9.0.0 || ^10.5.0",
        "typescript": "^5.0.0 || ^6.0.2"
    },
    "packageManager": "npm@12.0.2",
    "engines": {
        "node": ">=22.0.0"
    },
    "devEngines": {
        "runtime": {
            "name": "node",
            "version": "^22.22.2 || ^24.15.0 || >=26.0.0",
            "onFail": "error"
        },
        "packageManager": {
            "name": "npm",
            "version": "12.0.2",
            "onFail": "error"
        }
    },
    "publishConfig": {
        "provenance": true,
        "registry": "https://registry.npmjs.org/"
    },
    "allowScripts": {
        "@swc/core@1.15.47": true,
        "core-js": false,
        "esbuild@0.28.2": true,
        "fsevents@2.3.3": true,
        "unrs-resolver@1.12.2": true
    },
    "readme": "README.md"
}
