-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.7 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "eslint-config-elegant-coding",
"description": "⚙️ Eslint configuration for help you to identify and fix these errors before they cause problems in your code. It can also help you to develop good coding habits that will make your code easier to maintain in the long run.",
"author":
{
"name": "Luis Monsalve <TheElegantCoding>",
"email": "[email protected]"
},
"version": "9.8.2",
"repository":
{
"type": "git",
"url": "git+https://github.com/TheElegantCoding/eslint-config-elegant-coding.git"
},
"keywords":
[
"eslint",
"eslintconfig",
"eslint-config",
"eslintplugin",
"eslint-plugin",
"eslint-rules",
"eslint-shareable-configs",
"linter",
"linter-eslint",
"linter-config",
"style-guide",
"styleguide",
"typescript",
"clean-code",
"javascript",
"code-style"
],
"type": "module",
"exports":
{
".":
{
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [ "./dist" ],
"engines":
{
"node": ">=20.10.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=8.0.0"
},
"scripts":
{
"preinstall": "npx only-allow bun",
"build": "tsup --format esm,cjs --clean --dts",
"dev": "npx @eslint/config-inspector --config eslint.config.js",
"build:inspector": "pnpm build && npx @eslint/config-inspector build",
"preview": "eslint-flat-config-viewer",
"type-check": "tsc --pretty --noEmit",
"lint": "pnpm lint-eslint",
"lint-eslint": "eslint . --fix "
},
"peerDependencies":
{
"eslint": ">=9.15.0"
},
"dependencies":
{
"@html-eslint/eslint-plugin": "0.27.0",
"@html-eslint/parser": "0.27.0",
"@stylistic/eslint-plugin": "2.11.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"astro-eslint-parser": "1.1.0",
"eslint": "9.15.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-import-x": "4.4.3",
"eslint-plugin-jsonc": "2.18.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-oxlint": "0.13.0",
"eslint-plugin-perfectionist": "4.0.3",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-solid": "0.14.4",
"eslint-plugin-tailwindcss": "3.17.5",
"eslint-plugin-unicorn": "56.0.1",
"eslint-plugin-yml": "1.15.0",
"globals": "^15.12.0",
"jsonc-eslint-parser": "2.4.0",
"yaml-eslint-parser": "1.2.3"
},
"devDependencies":
{
"@eslint/config-inspector": "0.5.6",
"@types/eslint": "9.6.1",
"@types/eslint-plugin-tailwindcss": "3.17.0",
"tsup": "8.3.5",
"typescript": "5.6.3"
}
}