@vitest/eslint-plugin 0.0.0-0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +185 -1
- package/dist/index.cjs +4625 -0
- package/dist/index.d.cts +179 -0
- package/dist/index.d.mts +179 -0
- package/dist/index.d.ts +179 -0
- package/dist/index.mjs +4606 -0
- package/package.json +81 -2
package/package.json
CHANGED
|
@@ -1,4 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitest/eslint-plugin",
|
|
3
|
-
"version": "
|
|
4
|
-
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"description": "Eslint plugin for vitest",
|
|
6
|
+
"repository": "vitest-dev/eslint-plugin-vitest",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"eslint",
|
|
9
|
+
"eslintplugin",
|
|
10
|
+
"eslint-plugin",
|
|
11
|
+
"vitest eslint plugin",
|
|
12
|
+
"vitest",
|
|
13
|
+
"eslint plugin"
|
|
14
|
+
],
|
|
15
|
+
"author": "Verite Mugabo <https://veritemugabo.com/>",
|
|
16
|
+
"type": "module",
|
|
17
|
+
"main": "./dist/index.cjs",
|
|
18
|
+
"module": "./dist/index.mjs",
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"import": "./dist/index.mjs",
|
|
24
|
+
"require": "./dist/index.cjs"
|
|
25
|
+
},
|
|
26
|
+
"./package.json": "./package.json"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@stylistic/eslint-plugin": "^2.6.2",
|
|
33
|
+
"@types/eslint": "^8.56.11",
|
|
34
|
+
"@types/mocha": "^10.0.7",
|
|
35
|
+
"@types/node": "^20.14.15",
|
|
36
|
+
"@typescript-eslint/eslint-plugin": "8.0.0",
|
|
37
|
+
"@typescript-eslint/parser": "8.0.0",
|
|
38
|
+
"@typescript-eslint/rule-tester": "8.0.0",
|
|
39
|
+
"@vitest/eslint-plugin": "^1.0.0",
|
|
40
|
+
"bumpp": "^9.4.2",
|
|
41
|
+
"concurrently": "^8.2.2",
|
|
42
|
+
"eslint": "^9.9.0",
|
|
43
|
+
"eslint-doc-generator": "^1.7.1",
|
|
44
|
+
"eslint-plugin-eslint-plugin": "^6.2.0",
|
|
45
|
+
"eslint-remote-tester": "^4.0.1",
|
|
46
|
+
"eslint-remote-tester-repositories": "^1.0.1",
|
|
47
|
+
"importx": "^0.3.11",
|
|
48
|
+
"tsx": "^4.17.0",
|
|
49
|
+
"typescript": "^5.5.4",
|
|
50
|
+
"unbuild": "^2.0.0",
|
|
51
|
+
"vitest": "^1.6.0"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@typescript-eslint/utils": ">= 8.0",
|
|
55
|
+
"eslint": ">= 8.57.0",
|
|
56
|
+
"typescript": ">= 5.0.0",
|
|
57
|
+
"vitest": "*"
|
|
58
|
+
},
|
|
59
|
+
"peerDependenciesMeta": {
|
|
60
|
+
"vitest": {
|
|
61
|
+
"optional": true
|
|
62
|
+
},
|
|
63
|
+
"typescript": {
|
|
64
|
+
"optional": true
|
|
65
|
+
},
|
|
66
|
+
"@typescript-eslint/utils": {
|
|
67
|
+
"optional": true
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"scripts": {
|
|
71
|
+
"build": "unbuild",
|
|
72
|
+
"lint:eslint-docs": "pnpm build && eslint-doc-generator --check",
|
|
73
|
+
"lint:js": "eslint . --fix",
|
|
74
|
+
"lint": "concurrently --prefixColors auto \"pnpm:lint:*\"",
|
|
75
|
+
"release": "pnpm build && bumpp package.json --commit --push --tag && pnpm publish",
|
|
76
|
+
"stub": "unbuild --stub",
|
|
77
|
+
"test:ci": "vitest run",
|
|
78
|
+
"test": "vitest",
|
|
79
|
+
"generate": "tsx scripts/generate.ts",
|
|
80
|
+
"update:eslint-docs": "pnpm build && eslint-doc-generator",
|
|
81
|
+
"tsc": "tsc --noEmit"
|
|
82
|
+
}
|
|
83
|
+
}
|