@ofk/eslint-config 0.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/README.md +45 -0
- package/dist/index.d.mts +52 -0
- package/dist/index.d.ts +52 -0
- package/dist/index.js +1189 -0
- package/dist/index.mjs +1156 -0
- package/package.json +130 -0
package/package.json
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ofk/eslint-config",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "ofk (https://github.com/ofk/)",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/index.mjs",
|
|
10
|
+
"require": "./dist/index.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"main": "./dist/index.js",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsup",
|
|
19
|
+
"lint": "run-s lint:*",
|
|
20
|
+
"lint:eslint": "eslint .",
|
|
21
|
+
"lint-fix": "run-s lint-fix:*",
|
|
22
|
+
"lint-fix:eslint": "eslint --fix .",
|
|
23
|
+
"lint-fix:prettier": "prettier --write .",
|
|
24
|
+
"lint-fix:prettier-package-json": "prettier-package-json --write",
|
|
25
|
+
"prepare": "husky",
|
|
26
|
+
"prepublishOnly": "npm run build",
|
|
27
|
+
"test": "run-s lint test:*",
|
|
28
|
+
"test:vitest": "vitest run"
|
|
29
|
+
},
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
|
|
33
|
+
"@eslint/js": "^9.18.0",
|
|
34
|
+
"@vitest/eslint-plugin": "^1.0.0",
|
|
35
|
+
"confusing-browser-globals": "^1.0.1",
|
|
36
|
+
"eslint-plugin-import": "^2.31.0",
|
|
37
|
+
"eslint-plugin-jsx-a11y": "^6.10.0",
|
|
38
|
+
"eslint-plugin-perfectionist": "^4.0.0",
|
|
39
|
+
"eslint-plugin-react": "^7.35.0",
|
|
40
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
41
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
42
|
+
"eslint-plugin-unicorn": "^56.0.0",
|
|
43
|
+
"eslint-plugin-unused-imports": "^4.1.1",
|
|
44
|
+
"globals": "^15.4.0",
|
|
45
|
+
"typescript-eslint": "^8.15.0"
|
|
46
|
+
},
|
|
47
|
+
"peerDependenciesMeta": {
|
|
48
|
+
"@eslint-community/eslint-plugin-eslint-comments": {
|
|
49
|
+
"optional": true
|
|
50
|
+
},
|
|
51
|
+
"@eslint/js": {
|
|
52
|
+
"optional": true
|
|
53
|
+
},
|
|
54
|
+
"@vitest/eslint-plugin": {
|
|
55
|
+
"optional": true
|
|
56
|
+
},
|
|
57
|
+
"confusing-browser-globals": {
|
|
58
|
+
"optional": true
|
|
59
|
+
},
|
|
60
|
+
"eslint-plugin-import": {
|
|
61
|
+
"optional": true
|
|
62
|
+
},
|
|
63
|
+
"eslint-plugin-jsx-a11y": {
|
|
64
|
+
"optional": true
|
|
65
|
+
},
|
|
66
|
+
"eslint-plugin-perfectionist": {
|
|
67
|
+
"optional": true
|
|
68
|
+
},
|
|
69
|
+
"eslint-plugin-react": {
|
|
70
|
+
"optional": true
|
|
71
|
+
},
|
|
72
|
+
"eslint-plugin-react-hooks": {
|
|
73
|
+
"optional": true
|
|
74
|
+
},
|
|
75
|
+
"eslint-plugin-react-refresh": {
|
|
76
|
+
"optional": true
|
|
77
|
+
},
|
|
78
|
+
"eslint-plugin-unicorn": {
|
|
79
|
+
"optional": true
|
|
80
|
+
},
|
|
81
|
+
"eslint-plugin-unused-imports": {
|
|
82
|
+
"optional": true
|
|
83
|
+
},
|
|
84
|
+
"globals": {
|
|
85
|
+
"optional": true
|
|
86
|
+
},
|
|
87
|
+
"typescript-eslint": {
|
|
88
|
+
"optional": true
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"devDependencies": {
|
|
92
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
|
|
93
|
+
"@eslint/js": "^9.19.0",
|
|
94
|
+
"@types/confusing-browser-globals": "^1.0.3",
|
|
95
|
+
"@types/eslint-config-prettier": "^6.11.3",
|
|
96
|
+
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
|
|
97
|
+
"@vitest/eslint-plugin": "^1.1.25",
|
|
98
|
+
"confusing-browser-globals": "^1.0.11",
|
|
99
|
+
"eslint": "^9.19.0",
|
|
100
|
+
"eslint-config-prettier": "^10.0.1",
|
|
101
|
+
"eslint-plugin-import": "^2.31.0",
|
|
102
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
103
|
+
"eslint-plugin-perfectionist": "^4.7.0",
|
|
104
|
+
"eslint-plugin-react": "^7.37.4",
|
|
105
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
106
|
+
"eslint-plugin-react-refresh": "^0.4.18",
|
|
107
|
+
"eslint-plugin-unicorn": "^56.0.1",
|
|
108
|
+
"eslint-plugin-unused-imports": "^4.1.4",
|
|
109
|
+
"globals": "^15.14.0",
|
|
110
|
+
"husky": "^9.1.7",
|
|
111
|
+
"jiti": "^2.4.2",
|
|
112
|
+
"lint-staged": "^15.4.3",
|
|
113
|
+
"npm-run-all": "^4.1.5",
|
|
114
|
+
"prettier": "^3.4.2",
|
|
115
|
+
"prettier-package-json": "^2.8.0",
|
|
116
|
+
"tsup": "^8.3.6",
|
|
117
|
+
"typescript": "^5.7.3",
|
|
118
|
+
"typescript-eslint": "^8.22.0",
|
|
119
|
+
"vitest": "^3.0.4"
|
|
120
|
+
},
|
|
121
|
+
"keywords": [],
|
|
122
|
+
"lint-staged": {
|
|
123
|
+
"*.{json,ts}": "prettier --write",
|
|
124
|
+
"package.json": [
|
|
125
|
+
"prettier --write",
|
|
126
|
+
"npm run lint-fix:prettier-package-json"
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
"packageManager": "npm@10.8.0+sha512.c21f77b91733829ec70e73cc88b5dc0a4bf685a81d252d3327d293ff7d5dd05a173f4dbeaa037600ec29696f397f14569229e5dab10b7cfc3e0a30575b8f3f8d"
|
|
130
|
+
}
|