eslint-plugin-arrow-return-style-x
Version:
Enforce arrow function return style and automatically fix it
108 lines • 2.7 kB
JSON
{
"name": "eslint-plugin-arrow-return-style-x",
"version": "1.2.2",
"description": "Enforce arrow function return style and automatically fix it",
"keywords": [
"arrow-body-style",
"arrow-return-style",
"arrow-function"
],
"repository": {
"url": "https://github.com/christopher-buss/eslint-plugin-arrow-return-style-x.git",
"type": "git"
},
"license": "MIT",
"author": "Christopher Buss <christopher.buss@pm.me> (https://github.com/christopher-buss)",
"contributors": [
"u3u <qwq@qwq.cat> (https://github.com/u3u)"
],
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/src/index.d.mts",
"default": "./dist/src/index.mjs"
},
"require": {
"types": "./dist/src/index.d.mts",
"default": "./dist/src/index.mjs"
}
}
},
"main": "./dist/src/index.mjs",
"types": "./dist/src/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/src/index.d.mts"
]
}
},
"files": [
"dist",
"workers"
],
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"dependencies": {
"@typescript-eslint/utils": "8.39.0",
"detect-indent": "7.0.1",
"synckit": "0.11.11"
},
"devDependencies": {
"@antfu/ni": "25.0.0",
"@isentinel/eslint-config": "3.0.0-beta.1",
"@types/node": "24.0.13",
"@typescript-eslint/eslint-plugin": "8.39.0",
"@typescript-eslint/parser": "8.39.0",
"@vitest/eslint-plugin": "1.3.4",
"bumpp": "10.2.2",
"eslint": "9.32.0",
"eslint-doc-generator": "2.2.2",
"eslint-plugin-eslint-plugin": "7.0.0",
"eslint-plugin-pnpm": "1.1.0",
"eslint-vitest-rule-tester": "2.2.1",
"jiti": "2.5.1",
"lint-staged": "16.1.4",
"prettier": "3.6.2",
"publint": "0.3.12",
"simple-git-hooks": "2.13.1",
"ts-api-utils": "2.1.0",
"tsdown": "0.13.3",
"tsx": "4.20.3",
"typescript": "5.8.3",
"unplugin-unused": "0.5.1",
"vitest": "3.2.4"
},
"peerDependencies": {
"eslint": ">=9.15.0"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
}
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsdown --clean --dts",
"dev": "tsdown --stub",
"eslint-docs": "eslint-doc-generator",
"posteslint-docs": "nr lint --cache --fix \"**/*.md\"",
"lint": "eslint --cache",
"release": "bumpp",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
}
}