eslint-vitest-rule-tester
Version:
ESLint rule tester with Vitest
73 lines • 1.91 kB
JSON
{
"name": "eslint-vitest-rule-tester",
"type": "module",
"version": "3.1.0",
"description": "ESLint rule tester with Vitest",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu-collective/eslint-vitest-rule-tester#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu-collective/eslint-vitest-rule-tester.git"
},
"bugs": "https://github.com/antfu-collective/eslint-vitest-rule-tester/issues",
"keywords": [
"eslint",
"vitest",
"rule-tester"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist",
"skills"
],
"peerDependencies": {
"eslint": "^9.10.0 || ^10.0.0",
"vitest": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
},
"dependencies": {
"@typescript-eslint/utils": "^8.54.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@antfu/ni": "^28.2.0",
"@antfu/utils": "^9.3.0",
"@types/node": "^25.2.1",
"@typescript-eslint/parser": "^8.54.0",
"@typescript/native-preview": "7.0.0-dev.20251212.1",
"ajv": "^6.12.6",
"bumpp": "^10.4.1",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"taze": "^19.9.2",
"tsdown": "^0.17.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"scripts": {
"build": "tsdown",
"watch": "tsdown --watch",
"lint": "eslint",
"release": "bumpp",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
}
}