UNPKG

eslint-merge-processors

Version:

Merge multiple ESLint processors to behave like one

77 lines (76 loc) 1.85 kB
{ "name": "eslint-merge-processors", "type": "module", "version": "2.0.0", "packageManager": "pnpm@10.2.1", "description": "Merge multiple ESLint processors to behave like one", "author": "Anthony Fu <anthonyfu117@hotmail.com>", "license": "MIT", "funding": "https://github.com/sponsors/antfu", "homepage": "https://github.com/antfu/eslint-merge-processors#readme", "repository": { "type": "git", "url": "git+https://github.com/antfu/eslint-merge-processors.git" }, "bugs": "https://github.com/antfu/eslint-merge-processors/issues", "keywords": [ "eslint", "eslint-processor" ], "sideEffects": false, "exports": { ".": "./dist/index.mjs" }, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "typesVersions": { "*": { "*": [ "./dist/*", "./dist/index.d.mts" ] } }, "files": [ "dist" ], "scripts": { "build": "unbuild", "dev": "unbuild --stub", "lint": "eslint .", "prepublishOnly": "nr build", "release": "bumpp && npm publish", "start": "esno src/index.ts", "test": "vitest", "typecheck": "tsc --noEmit", "prepare": "simple-git-hooks" }, "peerDependencies": { "eslint": "*" }, "devDependencies": { "@antfu/eslint-config": "^4.1.1", "@antfu/ni": "^23.3.1", "@antfu/utils": "^8.1.0", "@types/eslint": "^9.6.1", "@types/node": "^22.13.1", "bumpp": "^10.0.2", "eslint": "^9.20.0", "esno": "^4.8.0", "lint-staged": "^15.4.3", "pnpm": "^10.2.1", "rimraf": "^6.0.1", "simple-git-hooks": "^2.11.1", "typescript": "^5.7.3", "unbuild": "^3.3.1", "vite": "^6.1.0", "vitest": "^3.0.5" }, "simple-git-hooks": { "pre-commit": "pnpm lint-staged" }, "lint-staged": { "*": "eslint --fix" } }