You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.1 KiB
80 lines
2.1 KiB
1 month ago
|
{
|
||
|
"name": "@vitest/eslint-plugin",
|
||
|
"version": "1.1.7",
|
||
|
"license": "MIT",
|
||
|
"description": "Eslint plugin for vitest",
|
||
|
"repository": "vitest-dev/eslint-plugin-vitest",
|
||
|
"keywords": [
|
||
|
"eslint",
|
||
|
"eslintplugin",
|
||
|
"eslint-plugin",
|
||
|
"vitest eslint plugin",
|
||
|
"vitest",
|
||
|
"eslint plugin"
|
||
|
],
|
||
|
"author": "Verite Mugabo <https://veritemugabo.com/>",
|
||
|
"type": "module",
|
||
|
"main": "./dist/index.cjs",
|
||
|
"module": "./dist/index.mjs",
|
||
|
"types": "./dist/index.d.ts",
|
||
|
"exports": {
|
||
|
".": {
|
||
|
"types": "./dist/index.d.ts",
|
||
|
"import": "./dist/index.mjs",
|
||
|
"require": "./dist/index.cjs"
|
||
|
},
|
||
|
"./package.json": "./package.json"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist"
|
||
|
],
|
||
|
"devDependencies": {
|
||
|
"@stylistic/eslint-plugin": "^2.6.2",
|
||
|
"@types/eslint": "^9.6.0",
|
||
|
"@types/mocha": "^10.0.7",
|
||
|
"@types/node": "^20.14.15",
|
||
|
"@typescript-eslint/eslint-plugin": "8.0.0",
|
||
|
"@typescript-eslint/parser": "8.0.0",
|
||
|
"@typescript-eslint/rule-tester": "8.0.0",
|
||
|
"@vitest/eslint-plugin": "^1.0.0",
|
||
|
"bumpp": "^9.4.2",
|
||
|
"concurrently": "^8.2.2",
|
||
|
"eslint": "^9.9.0",
|
||
|
"eslint-doc-generator": "^1.7.1",
|
||
|
"eslint-plugin-eslint-plugin": "^6.2.0",
|
||
|
"eslint-remote-tester": "^4.0.1",
|
||
|
"eslint-remote-tester-repositories": "^2.0.0",
|
||
|
"importx": "^0.3.11",
|
||
|
"tsx": "^4.17.0",
|
||
|
"typescript": "^5.5.4",
|
||
|
"unbuild": "^2.0.0",
|
||
|
"vitest": "^1.6.0"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"@typescript-eslint/utils": ">= 8.0",
|
||
|
"eslint": ">= 8.57.0",
|
||
|
"typescript": ">= 5.0.0",
|
||
|
"vitest": "*"
|
||
|
},
|
||
|
"peerDependenciesMeta": {
|
||
|
"typescript": {
|
||
|
"optional": true
|
||
|
},
|
||
|
"vitest": {
|
||
|
"optional": true
|
||
|
}
|
||
|
},
|
||
|
"scripts": {
|
||
|
"build": "unbuild",
|
||
|
"lint:eslint-docs": "pnpm build && eslint-doc-generator --check",
|
||
|
"lint:js": "eslint . --fix",
|
||
|
"lint": "concurrently --prefixColors auto \"pnpm:lint:*\"",
|
||
|
"release": "pnpm build && bumpp package.json --commit --push --tag && pnpm publish",
|
||
|
"stub": "unbuild --stub",
|
||
|
"test:ci": "vitest run",
|
||
|
"test": "vitest",
|
||
|
"generate": "tsx scripts/generate.ts",
|
||
|
"update:eslint-docs": "pnpm build && eslint-doc-generator",
|
||
|
"tsc": "tsc --noEmit"
|
||
|
}
|
||
|
}
|