@richardscull/eslint-config 1.0.0
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 +178 -0
- package/dist/index.d.ts +10729 -0
- package/dist/index.js +1120 -0
- package/package.json +99 -0
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@richardscull/eslint-config",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"packageManager": "pnpm@10.26.1",
|
|
6
|
+
"description": "ESLint Config",
|
|
7
|
+
"author": "richardscull, original by hyoban",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/richardscull/eslint-config.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"eslint-config"
|
|
15
|
+
],
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"exports": {
|
|
18
|
+
".": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/index.js",
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "pnpm typegen && bunchee",
|
|
30
|
+
"build:inspector": "npx @eslint/config-inspector build",
|
|
31
|
+
"dev": "pnpm typegen && npx @eslint/config-inspector",
|
|
32
|
+
"lint": "eslint",
|
|
33
|
+
"lint:fix": "eslint --fix",
|
|
34
|
+
"prepare": "simple-git-hooks && pnpm run build",
|
|
35
|
+
"prepublishOnly": "pnpm run build",
|
|
36
|
+
"test": "vitest",
|
|
37
|
+
"typecheck": "tsc",
|
|
38
|
+
"typegen": "tsx scripts/typegen.ts"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"eslint": "^9.0.0",
|
|
42
|
+
"typescript": ">=4.8.4"
|
|
43
|
+
},
|
|
44
|
+
"peerDependenciesMeta": {
|
|
45
|
+
"typescript": {
|
|
46
|
+
"optional": true
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@eslint-react/eslint-plugin": "^2.3.13",
|
|
51
|
+
"@eslint/js": "^9.39.2",
|
|
52
|
+
"@stylistic/eslint-plugin": "^5.6.1",
|
|
53
|
+
"@typescript-eslint/types": "^8.50.0",
|
|
54
|
+
"@unocss/eslint-config": "^66.5.10",
|
|
55
|
+
"defu": "^6.1.4",
|
|
56
|
+
"eslint-config-flat-gitignore": "^2.1.0",
|
|
57
|
+
"eslint-plugin-antfu": "^3.1.1",
|
|
58
|
+
"eslint-plugin-command": "^3.4.0",
|
|
59
|
+
"eslint-plugin-hyoban": "^0.6.1",
|
|
60
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
61
|
+
"eslint-plugin-jsonc": "^2.21.0",
|
|
62
|
+
"eslint-plugin-package-json": "^0.85.0",
|
|
63
|
+
"eslint-plugin-react-google-translate": "^0.1.1",
|
|
64
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
65
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
66
|
+
"eslint-plugin-regexp": "^2.10.0",
|
|
67
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
68
|
+
"eslint-plugin-tailwindcss": "4.0.0-beta.0",
|
|
69
|
+
"eslint-plugin-unicorn": "^62.0.0",
|
|
70
|
+
"eslint-plugin-unused-imports": "^4.3.0",
|
|
71
|
+
"globals": "^16.5.0",
|
|
72
|
+
"jsonc-eslint-parser": "^2.4.2",
|
|
73
|
+
"local-pkg": "^1.1.2",
|
|
74
|
+
"read-package-up": "^12.0.0",
|
|
75
|
+
"typescript-eslint": "^8.50.0"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@eslint/config-inspector": "1.4.2",
|
|
79
|
+
"@types/node": "^22.19.3",
|
|
80
|
+
"@types/react": "^19.2.7",
|
|
81
|
+
"bunchee": "^6.6.2",
|
|
82
|
+
"eslint": "^9.39.2",
|
|
83
|
+
"eslint-typegen": "^2.3.0",
|
|
84
|
+
"jiti": "^2.6.1",
|
|
85
|
+
"lint-staged": "^16.2.7",
|
|
86
|
+
"simple-git-hooks": "^2.13.1",
|
|
87
|
+
"tailwindcss": "^4.1.18",
|
|
88
|
+
"tsx": "^4.21.0",
|
|
89
|
+
"typescript": "^5.9.3",
|
|
90
|
+
"unocss": "^66.5.10",
|
|
91
|
+
"vitest": "^4.0.16"
|
|
92
|
+
},
|
|
93
|
+
"simple-git-hooks": {
|
|
94
|
+
"pre-commit": "pnpm lint-staged"
|
|
95
|
+
},
|
|
96
|
+
"lint-staged": {
|
|
97
|
+
"*": "eslint --fix"
|
|
98
|
+
}
|
|
99
|
+
}
|