{
  "name": "@stylistic/eslint-plugin-jsx",
  "version": "2.1.0",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/eslint-stylistic/eslint-stylistic#readme",
  "repository": {
    "directory": "packages/eslint-plugin-jsx",
    "type": "git",
    "url": "git+https://github.com/eslint-stylistic/eslint-stylistic.git"
  },
  "bugs": {
    "url": "https://github.com/eslint-stylistic/eslint-stylistic/issues"
  },
  "exports": {
    ".": {
      "types": "./dts/index.d.ts",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./define-config-support": {
      "types": "./dts/define-config-support.d.ts"
    },
    "./rule-options": {
      "types": "./dts/rule-options.d.ts"
    },
    "./rules/jsx-child-element-spacing": "./dist/jsx-child-element-spacing.js",
    "./rules/jsx-closing-bracket-location": "./dist/jsx-closing-bracket-location.js",
    "./rules/jsx-closing-tag-location": "./dist/jsx-closing-tag-location.js",
    "./rules/jsx-curly-brace-presence": "./dist/jsx-curly-brace-presence.js",
    "./rules/jsx-curly-newline": "./dist/jsx-curly-newline.js",
    "./rules/jsx-curly-spacing": "./dist/jsx-curly-spacing.js",
    "./rules/jsx-equals-spacing": "./dist/jsx-equals-spacing.js",
    "./rules/jsx-first-prop-new-line": "./dist/jsx-first-prop-new-line.js",
    "./rules/jsx-function-call-newline": "./dist/jsx-function-call-newline.js",
    "./rules/jsx-indent": "./dist/jsx-indent.js",
    "./rules/jsx-indent-props": "./dist/jsx-indent-props.js",
    "./rules/jsx-max-props-per-line": "./dist/jsx-max-props-per-line.js",
    "./rules/jsx-newline": "./dist/jsx-newline.js",
    "./rules/jsx-one-expression-per-line": "./dist/jsx-one-expression-per-line.js",
    "./rules/jsx-pascal-case": "./dist/jsx-pascal-case.js",
    "./rules/jsx-props-no-multi-spaces": "./dist/jsx-props-no-multi-spaces.js",
    "./rules/jsx-self-closing-comp": "./dist/jsx-self-closing-comp.js",
    "./rules/jsx-sort-props": "./dist/jsx-sort-props.js",
    "./rules/jsx-tag-spacing": "./dist/jsx-tag-spacing.js",
    "./rules/jsx-wrap-multilines": "./dist/jsx-wrap-multilines.js"
  },
  "main": "./dist/index.js",
  "types": "./dts/index.d.ts",
  "files": [
    "dist",
    "dts",
    "rules/**/*.d.ts"
  ],
  "engines": {
    "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
  },
  "peerDependencies": {
    "eslint": ">=8.40.0"
  },
  "dependencies": {
    "@types/eslint": "^8.56.10",
    "estraverse": "^5.3.0",
    "picomatch": "^4.0.2",
    "@stylistic/eslint-plugin-js": "^2.1.0"
  },
  "devDependencies": {
    "@babel/eslint-parser": "^7.24.5",
    "@babel/plugin-syntax-decorators": "^7.24.1",
    "@babel/plugin-syntax-do-expressions": "^7.24.1",
    "@babel/plugin-syntax-function-bind": "^7.24.1",
    "@babel/preset-react": "^7.24.1",
    "@types/picomatch": "^2.3.3",
    "@typescript-eslint/parser": "^7.8.0",
    "babel-eslint": "^10.1.0",
    "eslint": "^9.2.0",
    "semver": "^7.6.1",
    "typescript-eslint-parser": "^22.0.0"
  },
  "scripts": {
    "build": "rimraf dist && rollup --config=rollup.config.mts --configPlugin=rollup-plugin-esbuild",
    "dev": "rollup --config=rollup.config.mts --configPlugin=rollup-plugin-esbuild --watch"
  }
}