{
  "name": "eslint-plugin-functype",
  "version": "2.105.0",
  "description": "Custom ESLint rules for functional TypeScript programming with functype library patterns including Do notation (ESLint 10+)",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "lib",
    "dist",
    "README.md",
    "LICENSE"
  ],
  "bin": {
    "functype-plugin-rules": "dist/cli/list-rules.js"
  },
  "keywords": [
    "eslint",
    "eslintplugin",
    "eslint-plugin",
    "functional",
    "typescript",
    "immutable",
    "functype",
    "option",
    "either",
    "list"
  ],
  "prettier": "ts-builds/prettier",
  "peerDependencies": {
    "eslint": "^10.2.1"
  },
  "devDependencies": {
    "@types/node": "^24.13.2",
    "@typescript-eslint/rule-tester": "^8.61.1",
    "eslint-config-prettier": "^10.1.8",
    "ts-builds": "^3.2.1",
    "tsdown": "^0.22.3",
    "functype": "^1.5.0"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "author": {
    "name": "Jordan Burke",
    "url": "https://github.com/jordanburke"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jordanburke/functype.git",
    "directory": "packages/eslint-plugin-functype"
  },
  "bugs": {
    "url": "https://github.com/jordanburke/functype/issues"
  },
  "homepage": "https://github.com/jordanburke/functype/tree/main/packages/eslint-plugin-functype#readme",
  "engines": {
    "node": ">=20.20.0"
  },
  "scripts": {
    "validate": "ts-builds validate",
    "format": "ts-builds format",
    "format:check": "ts-builds format:check",
    "lint": "ts-builds lint",
    "lint:check": "eslint src --max-warnings 0",
    "typecheck": "ts-builds typecheck",
    "test": "ts-builds test",
    "test:watch": "ts-builds test:watch",
    "test:ui": "ts-builds test:ui",
    "test:coverage": "ts-builds test:coverage",
    "build": "ts-builds build",
    "dev": "ts-builds dev",
    "list-rules": "node dist/cli/list-rules.js",
    "list-rules:verbose": "node dist/cli/list-rules.js --verbose",
    "list-rules:usage": "node dist/cli/list-rules.js --usage",
    "check-deps": "node dist/cli/list-rules.js --check-deps",
    "cli:help": "node dist/cli/list-rules.js --help"
  }
}