-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
70 lines (70 loc) · 1.83 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
{
"name": "@yeger/eslint-config",
"type": "module",
"version": "2.5.2",
"description": "ESLint config preset based on @antfu/eslint-config.",
"author": {
"name": "Jan Müller",
"url": "https://github.com/DerYeger"
},
"license": "MIT",
"homepage": "https://github.com/DerYeger/yeger/tree/main/packages/eslint-config",
"repository": {
"type": "git",
"url": "git+https://github.com/DerYeger/yeger.git",
"directory": "packages/eslint-config"
},
"bugs": {
"url": "https://github.com/DerYeger/yeger/issues"
},
"keywords": [
"eslint",
"eslint-config",
"eslint-preset"
],
"sideEffects": false,
"main": "src/index.mjs",
"bin": {
"yeger-lint": "src/lint.mjs"
},
"files": [
"src"
],
"scripts": {
"build": "echo \"No build necessary.\"",
"check:publish": "publint run --strict",
"lint": "yeger-lint"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"dependencies": {
"@antfu/eslint-config": "3.14.0",
"@eslint-react/eslint-plugin": "1.23.2",
"@eslint/eslintrc": "3.2.0",
"astro-eslint-parser": "1.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-format": "1.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-md": "1.0.19",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.18",
"eslint-plugin-svelte": "2.46.1",
"eslint-plugin-tailwindcss": "3.18.0",
"eslint-plugin-tsdoc": "0.4.0",
"eslint-plugin-turbo": "2.3.3",
"eslint-plugin-yml": "1.16.0",
"picocolors": "1.1.1",
"yaml-eslint-parser": "1.2.3"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/eslint": "9.6.1"
}
}