UNPKG

eslint-plugin-command

Version:

Comment-as-command for one-off codemod with ESLint

85 lines 2.31 kB
{ "name": "eslint-plugin-command", "type": "module", "version": "3.4.0", "description": "Comment-as-command for one-off codemod with ESLint", "author": "Anthony Fu <anthonyfu117@hotmail.com>", "license": "MIT", "funding": "https://github.com/sponsors/antfu", "homepage": "https://github.com/antfu/eslint-plugin-command#readme", "repository": { "type": "git", "url": "git+https://github.com/antfu/eslint-plugin-command.git" }, "bugs": "https://github.com/antfu/eslint-plugin-command/issues", "keywords": [ "eslint-plugin", "codemod" ], "sideEffects": false, "exports": { ".": "./dist/index.mjs", "./commands": "./dist/commands.mjs", "./config": "./dist/config.mjs", "./types": "./dist/types.mjs", "./package.json": "./package.json" }, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "files": [ "dist" ], "peerDependencies": { "eslint": "*" }, "dependencies": { "@es-joy/jsdoccomment": "^0.78.0" }, "devDependencies": { "@antfu/eslint-config": "^6.6.0", "@antfu/ni": "^28.0.0", "@antfu/utils": "^9.3.0", "@eslint/config-inspector": "^1.4.2", "@types/lodash.merge": "^4.6.9", "@types/node": "^24.10.2", "@types/semver": "^7.7.1", "@typescript-eslint/rule-tester": "^8.49.0", "@typescript-eslint/typescript-estree": "^8.49.0", "@typescript-eslint/utils": "^8.49.0", "@vitest/ui": "^4.0.15", "bumpp": "^10.3.2", "eslint": "^9.39.1", "eslint-vitest-rule-tester": "^3.0.0", "fast-glob": "^3.3.3", "lint-staged": "^16.2.7", "lodash.merge": "4.6.2", "pnpm": "^10.25.0", "rimraf": "^6.1.2", "semver": "^7.7.3", "simple-git-hooks": "^2.13.1", "tsdown": "^0.17.2", "typescript": "^5.9.3", "vite": "^7.2.7", "vitest": "^4.0.15" }, "resolutions": { "chokidar": "catalog:dev", "eslint-plugin-command": "workspace:*" }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "lint-staged": { "*": "eslint --fix" }, "scripts": { "build": "tsdown", "lint": "tsdown && eslint .", "release": "bumpp", "test": "vitest", "docs": "nr -C docs docs:dev", "docs:build": "nr -C docs docs:build", "typecheck": "tsc --noEmit" } }