{
  "name": "@stylistic/eslint-plugin-ts",
  "type": "commonjs",
  "version": "2.10.1",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/eslint-stylistic/eslint-stylistic#readme",
  "repository": {
    "directory": "packages/eslint-plugin-ts",
    "type": "git",
    "url": "git+https://github.com/eslint-stylistic/eslint-stylistic.git"
  },
  "bugs": {
    "url": "https://github.com/eslint-stylistic/eslint-stylistic/issues"
  },
  "exports": {
    ".": {
      "types": "./dist/dts/index.d.ts",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./define-config-support": {
      "types": "./dist/dts/define-config-support.d.ts"
    },
    "./rule-options": {
      "types": "./dist/dts/rule-options.d.ts"
    },
    "./rules/block-spacing": "./dist/rules/block-spacing.js",
    "./rules/brace-style": "./dist/rules/brace-style.js",
    "./rules/comma-dangle": "./dist/rules/comma-dangle.js",
    "./rules/comma-spacing": "./dist/rules/comma-spacing.js",
    "./rules/func-call-spacing": "./dist/rules/func-call-spacing.js",
    "./rules/function-call-spacing": "./dist/rules/function-call-spacing.js",
    "./rules/indent": "./dist/rules/indent.js",
    "./rules/key-spacing": "./dist/rules/key-spacing.js",
    "./rules/keyword-spacing": "./dist/rules/keyword-spacing.js",
    "./rules/lines-around-comment": "./dist/rules/lines-around-comment.js",
    "./rules/lines-between-class-members": "./dist/rules/lines-between-class-members.js",
    "./rules/member-delimiter-style": "./dist/rules/member-delimiter-style.js",
    "./rules/no-extra-parens": "./dist/rules/no-extra-parens.js",
    "./rules/no-extra-semi": "./dist/rules/no-extra-semi.js",
    "./rules/object-curly-newline": "./dist/rules/object-curly-newline.js",
    "./rules/object-curly-spacing": "./dist/rules/object-curly-spacing.js",
    "./rules/object-property-newline": "./dist/rules/object-property-newline.js",
    "./rules/padding-line-between-statements": "./dist/rules/padding-line-between-statements.js",
    "./rules/quote-props": "./dist/rules/quote-props.js",
    "./rules/quotes": "./dist/rules/quotes.js",
    "./rules/semi": "./dist/rules/semi.js",
    "./rules/space-before-blocks": "./dist/rules/space-before-blocks.js",
    "./rules/space-before-function-paren": "./dist/rules/space-before-function-paren.js",
    "./rules/space-infix-ops": "./dist/rules/space-infix-ops.js",
    "./rules/type-annotation-spacing": "./dist/rules/type-annotation-spacing.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/dts/index.d.ts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  },
  "peerDependencies": {
    "eslint": ">=8.40.0"
  },
  "dependencies": {
    "@typescript-eslint/utils": "^8.12.2",
    "eslint-visitor-keys": "^4.2.0",
    "espree": "^10.3.0"
  },
  "scripts": {
    "build": "rimraf dist && rollup --config=rollup.config.mjs",
    "dev": "rollup --config=rollup.config.mjs --watch"
  }
}