UNPKG

eslint-plugin-command

Version:

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

87 lines 2.36 kB
{ "name": "eslint-plugin-command", "type": "module", "version": "3.3.1", "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", "./config": "./dist/config.mjs", "./commands": "./dist/commands.mjs", "./types": "./dist/types.mjs" }, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "files": [ "dist" ], "peerDependencies": { "eslint": "*" }, "dependencies": { "@es-joy/jsdoccomment": "^0.50.2" }, "devDependencies": { "@antfu/eslint-config": "^4.15.0", "@antfu/ni": "^25.0.0", "@antfu/utils": "^9.2.0", "@eslint/config-inspector": "^1.1.0", "@types/lodash.merge": "^4.6.9", "@types/node": "^24.0.3", "@types/semver": "^7.7.0", "@typescript-eslint/rule-tester": "^8.34.1", "@typescript-eslint/typescript-estree": "^8.34.1", "@typescript-eslint/utils": "^8.34.1", "@vitest/ui": "^3.2.4", "bumpp": "^10.2.0", "eslint": "^9.29.0", "eslint-vitest-rule-tester": "^2.2.0", "esno": "^4.8.0", "fast-glob": "^3.3.3", "lint-staged": "^16.1.2", "lodash.merge": "4.6.2", "pnpm": "^10.12.1", "rimraf": "^6.0.1", "semver": "^7.7.2", "simple-git-hooks": "^2.13.0", "tsup": "^8.5.0", "typescript": "^5.8.3", "unbuild": "^3.5.0", "vite": "^6.3.5", "vitest": "^3.2.4" }, "resolutions": { "eslint-plugin-command": "workspace:*" }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "lint-staged": { "*": "eslint --fix" }, "scripts": { "build": "unbuild", "dev": "unbuild --stub", "lint": "unbuild && eslint .", "release": "bumpp && pnpm publish", "start": "esno src/index.ts", "test": "vitest", "docs": "nr -C docs docs:dev", "docs:build": "nr -C docs docs:build", "typecheck": "tsc --noEmit" } }