@anolilab/eslint-config 16.3.0 → 16.3.2
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/CHANGELOG.md +13 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +696 -186
- package/dist/index.d.mts +696 -186
- package/dist/index.d.ts +696 -186
- package/dist/index.mjs +2 -2
- package/package.json +261 -261
package/package.json
CHANGED
|
@@ -1,271 +1,271 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
2
|
+
"name": "@anolilab/eslint-config",
|
|
3
|
+
"version": "16.3.2",
|
|
4
|
+
"description": "ESLint shareable config for the Anolilab JavaScript style guide.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"anolilab",
|
|
7
|
+
"lint",
|
|
8
|
+
"styleguide",
|
|
9
|
+
"eslint",
|
|
10
|
+
"eslintconfig",
|
|
11
|
+
"eslint-config",
|
|
12
|
+
"config",
|
|
13
|
+
"javascript",
|
|
14
|
+
"es2015",
|
|
15
|
+
"es2016",
|
|
16
|
+
"es2017",
|
|
17
|
+
"es2018",
|
|
18
|
+
"es2020",
|
|
19
|
+
"globals",
|
|
20
|
+
"eslint-import-resolver-node",
|
|
21
|
+
"eslint-import-resolver-typescript",
|
|
22
|
+
"eslint-plugin-antfu",
|
|
23
|
+
"eslint-plugin-compat",
|
|
24
|
+
"eslint-plugin-es",
|
|
25
|
+
"eslint-plugin-es-x",
|
|
26
|
+
"eslint-plugin-eslint-comments",
|
|
27
|
+
"eslint-plugin-html",
|
|
28
|
+
"eslint-plugin-i",
|
|
29
|
+
"@tanstack/eslint-plugin-router",
|
|
30
|
+
"eslint-plugin-jsonc",
|
|
31
|
+
"eslint-markdown",
|
|
32
|
+
"eslint-plugin-no-secrets",
|
|
33
|
+
"eslint-plugin-no-use-extend-native",
|
|
34
|
+
"eslint-plugin-promise",
|
|
35
|
+
"eslint-plugin-regexp",
|
|
36
|
+
"eslint-plugin-sonarjs",
|
|
37
|
+
"eslint-plugin-toml",
|
|
38
|
+
"eslint-plugin-unicorn",
|
|
39
|
+
"eslint-plugin-yml",
|
|
40
|
+
"eslint-plugin-playwright",
|
|
41
|
+
"eslint-plugin-jsdoc",
|
|
42
|
+
"eslint-plugin-jsx-a11y",
|
|
43
|
+
"eslint-plugin-n",
|
|
44
|
+
"eslint-plugin-no-unsanitized",
|
|
45
|
+
"eslint-plugin-react",
|
|
46
|
+
"eslint-plugin-react-hooks",
|
|
47
|
+
"eslint-plugin-storybook",
|
|
48
|
+
"eslint-plugin-tailwindcss",
|
|
49
|
+
"eslint-plugin-testing-library",
|
|
50
|
+
"eslint-plugin-tsdoc",
|
|
51
|
+
"eslint-plugin-no-for-of-array",
|
|
52
|
+
"eslint-plugin-you-dont-need-lodash-underscore"
|
|
53
|
+
],
|
|
54
|
+
"homepage": "https://anolilab.com/nodejs/packages/eslint-config",
|
|
55
|
+
"repository": {
|
|
56
|
+
"type": "git",
|
|
57
|
+
"url": "https://github.com/anolilab/javascript-style-guide.git",
|
|
58
|
+
"directory": "packages/eslint-config"
|
|
59
|
+
},
|
|
60
|
+
"funding": [
|
|
61
|
+
{
|
|
62
|
+
"type": "github",
|
|
63
|
+
"url": "https://github.com/sponsors/prisis"
|
|
59
64
|
},
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
65
|
+
{
|
|
66
|
+
"type": "consulting",
|
|
67
|
+
"url": "https://anolilab.com/support"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"license": "MIT",
|
|
71
|
+
"author": {
|
|
72
|
+
"name": "Daniel Bannert",
|
|
73
|
+
"email": "d.bannert@anolilab.de"
|
|
74
|
+
},
|
|
75
|
+
"sideEffects": false,
|
|
76
|
+
"type": "module",
|
|
77
|
+
"exports": {
|
|
78
|
+
".": {
|
|
79
|
+
"import": {
|
|
80
|
+
"types": "./dist/index.d.mts",
|
|
81
|
+
"default": "./dist/index.mjs"
|
|
82
|
+
},
|
|
83
|
+
"require": {
|
|
84
|
+
"types": "./dist/index.d.cts",
|
|
85
|
+
"default": "./dist/index.cjs"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"./package.json": "./package.json"
|
|
89
|
+
},
|
|
90
|
+
"main": "dist/index.cjs",
|
|
91
|
+
"module": "dist/index.mjs",
|
|
92
|
+
"types": "dist/index.d.ts",
|
|
93
|
+
"typesVersions": {
|
|
94
|
+
">=5.0": {
|
|
95
|
+
".": [
|
|
96
|
+
"./dist/index.d.ts"
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"files": [
|
|
101
|
+
"CHANGELOG.md",
|
|
102
|
+
"LICENSE.md",
|
|
103
|
+
"README.md",
|
|
104
|
+
"dist"
|
|
105
|
+
],
|
|
106
|
+
"dependencies": {
|
|
107
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
108
|
+
"@eslint/compat": "^1.4.0",
|
|
109
|
+
"@eslint/js": "^9.36.0",
|
|
110
|
+
"@eslint/markdown": "^7.3.0",
|
|
111
|
+
"@html-eslint/eslint-plugin": "^0.47.0",
|
|
112
|
+
"@html-eslint/parser": "^0.47.0",
|
|
113
|
+
"@stylistic/eslint-plugin": "^5.4.0",
|
|
114
|
+
"@stylistic/eslint-plugin-ts": "^4.4.1",
|
|
115
|
+
"@typescript-eslint/parser": "^8.45.0",
|
|
116
|
+
"@typescript-eslint/types": "^8.45.0",
|
|
117
|
+
"@visulima/package": "^4.0.1",
|
|
118
|
+
"@visulima/tsconfig": "^1.2.0",
|
|
119
|
+
"@vitest/eslint-plugin": "^1.3.13",
|
|
120
|
+
"confusing-browser-globals": "^1.0.11",
|
|
121
|
+
"eslint-config-flat-gitignore": "^2.1.0",
|
|
122
|
+
"eslint-flat-config-utils": "^2.1.4",
|
|
123
|
+
"eslint-import-resolver-node": "^0.3.9",
|
|
124
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
125
|
+
"eslint-merge-processors": "^2.0.0",
|
|
126
|
+
"eslint-plugin-antfu": "^3.1.1",
|
|
127
|
+
"eslint-plugin-compat": "^6.0.2",
|
|
128
|
+
"eslint-plugin-erasable-syntax-only": "^0.3.1",
|
|
129
|
+
"eslint-plugin-es-x": "^9.1.0",
|
|
130
|
+
"eslint-plugin-html": "^8.1.3",
|
|
131
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
132
|
+
"eslint-plugin-jsdoc": "^60.7.1",
|
|
133
|
+
"eslint-plugin-jsonc": "^2.20.1",
|
|
134
|
+
"eslint-plugin-n": "^17.23.1",
|
|
135
|
+
"eslint-plugin-no-for-of-array": "^0.1.0",
|
|
136
|
+
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
137
|
+
"eslint-plugin-no-secrets": "^2.2.1",
|
|
138
|
+
"eslint-plugin-no-unsanitized": "^4.1.4",
|
|
139
|
+
"eslint-plugin-perfectionist": "^4.15.0",
|
|
140
|
+
"eslint-plugin-promise": "^7.2.1",
|
|
141
|
+
"eslint-plugin-regexp": "^2.10.0",
|
|
142
|
+
"eslint-plugin-security": "^3.0.1",
|
|
143
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
144
|
+
"eslint-plugin-sonarjs": "^3.0.5",
|
|
145
|
+
"eslint-plugin-toml": "^0.12.0",
|
|
146
|
+
"eslint-plugin-unicorn": "^61.0.2",
|
|
147
|
+
"eslint-plugin-unused-imports": "^4.2.0",
|
|
148
|
+
"eslint-plugin-yml": "^1.18.0",
|
|
149
|
+
"globals": "^16.4.0",
|
|
150
|
+
"jsonc-eslint-parser": "^2.4.1",
|
|
151
|
+
"parse-gitignore": "^2.0.0",
|
|
152
|
+
"semver": "^7.7.2",
|
|
153
|
+
"toml-eslint-parser": "^0.10.0",
|
|
154
|
+
"typescript-eslint": "^8.45.0",
|
|
155
|
+
"yaml-eslint-parser": "^1.3.0"
|
|
156
|
+
},
|
|
157
|
+
"peerDependencies": {
|
|
158
|
+
"@eslint-react/eslint-plugin": "^2.0.5",
|
|
159
|
+
"@eslint/css": "^0.11.1",
|
|
160
|
+
"@tanstack/eslint-plugin-query": "^5.91.0",
|
|
161
|
+
"@tanstack/eslint-plugin-router": "^1.132.31",
|
|
162
|
+
"@unocss/eslint-plugin": "^66.5.2",
|
|
163
|
+
"astro-eslint-parser": "^1.2.2",
|
|
164
|
+
"eslint": ">=9.5.0",
|
|
165
|
+
"eslint-plugin-astro": "^1.3.1",
|
|
166
|
+
"eslint-plugin-format": ">=0.1.0",
|
|
167
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
168
|
+
"eslint-plugin-playwright": "^0.16.0 || ^0.18.0 || ^2.0.0",
|
|
169
|
+
"eslint-plugin-react": "^7.37.5",
|
|
170
|
+
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
|
|
171
|
+
"eslint-plugin-react-hooks": "^6.1.0",
|
|
172
|
+
"eslint-plugin-react-perf": "^3.3.3",
|
|
173
|
+
"eslint-plugin-react-refresh": "^0.4.23",
|
|
174
|
+
"eslint-plugin-react-you-might-not-need-an-effect": "^0.5.5",
|
|
175
|
+
"eslint-plugin-storybook": "^9.1.10",
|
|
176
|
+
"eslint-plugin-tailwindcss": "^3.18.2",
|
|
177
|
+
"eslint-plugin-testing-library": "^7.11.0",
|
|
178
|
+
"eslint-plugin-tsdoc": "^0.4.0",
|
|
179
|
+
"eslint-plugin-validate-jsx-nesting": "^0.1.1",
|
|
180
|
+
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
|
|
181
|
+
"eslint-plugin-zod": "^1.4.0",
|
|
182
|
+
"tailwind-csstree": "0.1.4"
|
|
183
|
+
},
|
|
184
|
+
"peerDependenciesMeta": {
|
|
185
|
+
"@eslint-react/eslint-plugin": {
|
|
186
|
+
"optional": true
|
|
187
|
+
},
|
|
188
|
+
"@eslint/css": {
|
|
189
|
+
"optional": true
|
|
190
|
+
},
|
|
191
|
+
"@tanstack/eslint-plugin-query": {
|
|
192
|
+
"optional": true
|
|
193
|
+
},
|
|
194
|
+
"@tanstack/eslint-plugin-router": {
|
|
195
|
+
"optional": true
|
|
196
|
+
},
|
|
197
|
+
"@unocss/eslint-plugin": {
|
|
198
|
+
"optional": true
|
|
199
|
+
},
|
|
200
|
+
"astro-eslint-parser": {
|
|
201
|
+
"optional": true
|
|
202
|
+
},
|
|
203
|
+
"eslint-plugin-astro": {
|
|
204
|
+
"optional": true
|
|
205
|
+
},
|
|
206
|
+
"eslint-plugin-format": {
|
|
207
|
+
"optional": true
|
|
208
|
+
},
|
|
209
|
+
"eslint-plugin-jsx-a11y": {
|
|
210
|
+
"optional": true
|
|
211
|
+
},
|
|
212
|
+
"eslint-plugin-n": {
|
|
213
|
+
"optional": true
|
|
214
|
+
},
|
|
215
|
+
"eslint-plugin-playwright": {
|
|
216
|
+
"optional": true
|
|
217
|
+
},
|
|
218
|
+
"eslint-plugin-react": {
|
|
219
|
+
"optional": true
|
|
220
|
+
},
|
|
221
|
+
"eslint-plugin-react-compiler": {
|
|
222
|
+
"optional": true
|
|
223
|
+
},
|
|
224
|
+
"eslint-plugin-react-hooks": {
|
|
225
|
+
"optional": true
|
|
226
|
+
},
|
|
227
|
+
"eslint-plugin-react-perf": {
|
|
228
|
+
"optional": true
|
|
229
|
+
},
|
|
230
|
+
"eslint-plugin-react-refresh": {
|
|
231
|
+
"optional": true
|
|
232
|
+
},
|
|
233
|
+
"eslint-plugin-react-you-might-not-need-an-effect": {
|
|
234
|
+
"optional": true
|
|
235
|
+
},
|
|
236
|
+
"eslint-plugin-storybook": {
|
|
237
|
+
"optional": true
|
|
238
|
+
},
|
|
239
|
+
"eslint-plugin-tailwindcss": {
|
|
240
|
+
"optional": true
|
|
74
241
|
},
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
"exports": {
|
|
78
|
-
".": {
|
|
79
|
-
"import": {
|
|
80
|
-
"types": "./dist/index.d.mts",
|
|
81
|
-
"default": "./dist/index.mjs"
|
|
82
|
-
},
|
|
83
|
-
"require": {
|
|
84
|
-
"types": "./dist/index.d.cts",
|
|
85
|
-
"default": "./dist/index.cjs"
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"./package.json": "./package.json"
|
|
242
|
+
"eslint-plugin-testing-library": {
|
|
243
|
+
"optional": true
|
|
89
244
|
},
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
"types": "dist/index.d.ts",
|
|
93
|
-
"typesVersions": {
|
|
94
|
-
">=5.0": {
|
|
95
|
-
".": [
|
|
96
|
-
"./dist/index.d.ts"
|
|
97
|
-
]
|
|
98
|
-
}
|
|
245
|
+
"eslint-plugin-tsdoc": {
|
|
246
|
+
"optional": true
|
|
99
247
|
},
|
|
100
|
-
"
|
|
101
|
-
|
|
102
|
-
"LICENSE.md",
|
|
103
|
-
"README.md",
|
|
104
|
-
"dist"
|
|
105
|
-
],
|
|
106
|
-
"dependencies": {
|
|
107
|
-
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
108
|
-
"@eslint/compat": "^1.3.2",
|
|
109
|
-
"@eslint/js": "^9.35.0",
|
|
110
|
-
"@eslint/markdown": "^7.2.0",
|
|
111
|
-
"@html-eslint/eslint-plugin": "^0.46.2",
|
|
112
|
-
"@html-eslint/parser": "^0.46.2",
|
|
113
|
-
"@stylistic/eslint-plugin": "^5.3.1",
|
|
114
|
-
"@stylistic/eslint-plugin-ts": "^4.4.1",
|
|
115
|
-
"@typescript-eslint/parser": "^8.43.0",
|
|
116
|
-
"@typescript-eslint/types": "^8.43.0",
|
|
117
|
-
"@visulima/package": "^3.5.9",
|
|
118
|
-
"@visulima/tsconfig": "^1.1.20",
|
|
119
|
-
"@vitest/eslint-plugin": "^1.3.9",
|
|
120
|
-
"confusing-browser-globals": "^1.0.11",
|
|
121
|
-
"eslint-config-flat-gitignore": "^2.1.0",
|
|
122
|
-
"eslint-flat-config-utils": "^2.1.1",
|
|
123
|
-
"eslint-import-resolver-node": "^0.3.9",
|
|
124
|
-
"eslint-import-resolver-typescript": "^4.4.4",
|
|
125
|
-
"eslint-merge-processors": "^2.0.0",
|
|
126
|
-
"eslint-plugin-antfu": "^3.1.1",
|
|
127
|
-
"eslint-plugin-compat": "^6.0.2",
|
|
128
|
-
"eslint-plugin-erasable-syntax-only": "^0.3.1",
|
|
129
|
-
"eslint-plugin-es-x": "^9.1.0",
|
|
130
|
-
"eslint-plugin-html": "^8.1.3",
|
|
131
|
-
"eslint-plugin-import-x": "^4.16.1",
|
|
132
|
-
"eslint-plugin-jsdoc": "^56.1.2",
|
|
133
|
-
"eslint-plugin-jsonc": "^2.20.1",
|
|
134
|
-
"eslint-plugin-n": "^17.21.3",
|
|
135
|
-
"eslint-plugin-no-for-of-array": "^0.1.0",
|
|
136
|
-
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
137
|
-
"eslint-plugin-no-secrets": "^2.2.1",
|
|
138
|
-
"eslint-plugin-no-unsanitized": "^4.1.4",
|
|
139
|
-
"eslint-plugin-perfectionist": "^4.15.0",
|
|
140
|
-
"eslint-plugin-promise": "^7.2.1",
|
|
141
|
-
"eslint-plugin-regexp": "^2.10.0",
|
|
142
|
-
"eslint-plugin-security": "^3.0.1",
|
|
143
|
-
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
144
|
-
"eslint-plugin-sonarjs": "^3.0.5",
|
|
145
|
-
"eslint-plugin-toml": "^0.12.0",
|
|
146
|
-
"eslint-plugin-unicorn": "^61.0.2",
|
|
147
|
-
"eslint-plugin-unused-imports": "^4.2.0",
|
|
148
|
-
"eslint-plugin-yml": "^1.18.0",
|
|
149
|
-
"globals": "^16.4.0",
|
|
150
|
-
"jsonc-eslint-parser": "^2.4.0",
|
|
151
|
-
"parse-gitignore": "^2.0.0",
|
|
152
|
-
"semver": "^7.7.2",
|
|
153
|
-
"toml-eslint-parser": "^0.10.0",
|
|
154
|
-
"typescript-eslint": "^8.43.0",
|
|
155
|
-
"yaml-eslint-parser": "^1.3.0"
|
|
248
|
+
"eslint-plugin-validate-jsx-nesting": {
|
|
249
|
+
"optional": true
|
|
156
250
|
},
|
|
157
|
-
"
|
|
158
|
-
|
|
159
|
-
"@eslint/css": "^0.10.0",
|
|
160
|
-
"@tanstack/eslint-plugin-query": "^5.81.2",
|
|
161
|
-
"@tanstack/eslint-plugin-router": "^1.125.0",
|
|
162
|
-
"@unocss/eslint-plugin": "^66.3.3",
|
|
163
|
-
"astro-eslint-parser": "^1.2.2",
|
|
164
|
-
"eslint": ">=9.5.0",
|
|
165
|
-
"eslint-plugin-astro": "^1.3.1",
|
|
166
|
-
"eslint-plugin-format": ">=0.1.0",
|
|
167
|
-
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
168
|
-
"eslint-plugin-playwright": "^0.16.0 || ^0.18.0",
|
|
169
|
-
"eslint-plugin-react": "^7.37.5",
|
|
170
|
-
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
|
|
171
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
172
|
-
"eslint-plugin-react-perf": "^3.3.3",
|
|
173
|
-
"eslint-plugin-react-refresh": "^0.4.20",
|
|
174
|
-
"eslint-plugin-react-you-might-not-need-an-effect": "^0.0.33",
|
|
175
|
-
"eslint-plugin-storybook": "^0.12.0",
|
|
176
|
-
"eslint-plugin-tailwindcss": "^3.18.0",
|
|
177
|
-
"eslint-plugin-testing-library": "^7.2.2",
|
|
178
|
-
"eslint-plugin-tsdoc": "^0.4.0",
|
|
179
|
-
"eslint-plugin-validate-jsx-nesting": "^0.1.1",
|
|
180
|
-
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
|
|
181
|
-
"eslint-plugin-zod": "^1.4.0",
|
|
182
|
-
"tailwind-csstree": "0.1.4"
|
|
251
|
+
"eslint-plugin-you-dont-need-lodash-underscore": {
|
|
252
|
+
"optional": true
|
|
183
253
|
},
|
|
184
|
-
"
|
|
185
|
-
|
|
186
|
-
"optional": true
|
|
187
|
-
},
|
|
188
|
-
"@eslint/css": {
|
|
189
|
-
"optional": true
|
|
190
|
-
},
|
|
191
|
-
"@tanstack/eslint-plugin-query": {
|
|
192
|
-
"optional": true
|
|
193
|
-
},
|
|
194
|
-
"@tanstack/eslint-plugin-router": {
|
|
195
|
-
"optional": true
|
|
196
|
-
},
|
|
197
|
-
"@unocss/eslint-plugin": {
|
|
198
|
-
"optional": true
|
|
199
|
-
},
|
|
200
|
-
"astro-eslint-parser": {
|
|
201
|
-
"optional": true
|
|
202
|
-
},
|
|
203
|
-
"eslint-plugin-astro": {
|
|
204
|
-
"optional": true
|
|
205
|
-
},
|
|
206
|
-
"eslint-plugin-format": {
|
|
207
|
-
"optional": true
|
|
208
|
-
},
|
|
209
|
-
"eslint-plugin-jsx-a11y": {
|
|
210
|
-
"optional": true
|
|
211
|
-
},
|
|
212
|
-
"eslint-plugin-n": {
|
|
213
|
-
"optional": true
|
|
214
|
-
},
|
|
215
|
-
"eslint-plugin-playwright": {
|
|
216
|
-
"optional": true
|
|
217
|
-
},
|
|
218
|
-
"eslint-plugin-react": {
|
|
219
|
-
"optional": true
|
|
220
|
-
},
|
|
221
|
-
"eslint-plugin-react-compiler": {
|
|
222
|
-
"optional": true
|
|
223
|
-
},
|
|
224
|
-
"eslint-plugin-react-hooks": {
|
|
225
|
-
"optional": true
|
|
226
|
-
},
|
|
227
|
-
"eslint-plugin-react-perf": {
|
|
228
|
-
"optional": true
|
|
229
|
-
},
|
|
230
|
-
"eslint-plugin-react-refresh": {
|
|
231
|
-
"optional": true
|
|
232
|
-
},
|
|
233
|
-
"eslint-plugin-react-you-might-not-need-an-effect": {
|
|
234
|
-
"optional": true
|
|
235
|
-
},
|
|
236
|
-
"eslint-plugin-storybook": {
|
|
237
|
-
"optional": true
|
|
238
|
-
},
|
|
239
|
-
"eslint-plugin-tailwindcss": {
|
|
240
|
-
"optional": true
|
|
241
|
-
},
|
|
242
|
-
"eslint-plugin-testing-library": {
|
|
243
|
-
"optional": true
|
|
244
|
-
},
|
|
245
|
-
"eslint-plugin-tsdoc": {
|
|
246
|
-
"optional": true
|
|
247
|
-
},
|
|
248
|
-
"eslint-plugin-validate-jsx-nesting": {
|
|
249
|
-
"optional": true
|
|
250
|
-
},
|
|
251
|
-
"eslint-plugin-you-dont-need-lodash-underscore": {
|
|
252
|
-
"optional": true
|
|
253
|
-
},
|
|
254
|
-
"eslint-plugin-zod": {
|
|
255
|
-
"optional": true
|
|
256
|
-
},
|
|
257
|
-
"tailwind-csstree": {
|
|
258
|
-
"optional": true
|
|
259
|
-
},
|
|
260
|
-
"typescript": {
|
|
261
|
-
"optional": true
|
|
262
|
-
}
|
|
254
|
+
"eslint-plugin-zod": {
|
|
255
|
+
"optional": true
|
|
263
256
|
},
|
|
264
|
-
"
|
|
265
|
-
|
|
257
|
+
"tailwind-csstree": {
|
|
258
|
+
"optional": true
|
|
266
259
|
},
|
|
267
|
-
"
|
|
268
|
-
|
|
269
|
-
"provenance": true
|
|
260
|
+
"typescript": {
|
|
261
|
+
"optional": true
|
|
270
262
|
}
|
|
271
|
-
}
|
|
263
|
+
},
|
|
264
|
+
"engines": {
|
|
265
|
+
"node": ">=20.18.* <=24.*"
|
|
266
|
+
},
|
|
267
|
+
"publishConfig": {
|
|
268
|
+
"access": "public",
|
|
269
|
+
"provenance": true
|
|
270
|
+
}
|
|
271
|
+
}
|