-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 KB
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
{
"name": "eslint-config-codemask",
"version": "2.2.1",
"description": "Codemask ESLint configuration",
"main": "index.js",
"type": "module",
"author": "Codemask Labs",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"index.js",
"eslint.config.js",
"import.config.js",
"stylistic.config.js"
],
"scripts": {
"prepare": "husky",
"format": "yarn prettier -w eslint.config.js import.config.js stylistic.config.js",
"precommit": "yarn format && git add ."
},
"dependencies": {
"@eslint/compat": ">=1.x",
"@eslint/js": ">=9.x",
"@stylistic/eslint-plugin": ">=4.x",
"@typescript-eslint/eslint-plugin": ">=8.x",
"@typescript-eslint/parser": ">=8.x",
"eslint-plugin-functional": ">=9.x",
"eslint-plugin-import": ">=2.x",
"eslint-plugin-jsx-a11y": ">=6.x",
"eslint-plugin-nested-if": ">=1.x",
"eslint-plugin-no-else": ">=0.x",
"eslint-plugin-prefer-arrow": ">=1.x",
"eslint-plugin-react": ">=7.x",
"eslint-plugin-react-hooks": ">=5.x",
"typescript-eslint": ">=8.x"
},
"devDependencies": {
"eslint": "9.31.0",
"husky": "9.1.7",
"prettier": "3.6.2",
"typescript": "5.8.3"
},
"peerDependencies": {
"eslint": ">=9.x",
"typescript": ">=5.x"
}
}