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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136{
"name": "@ljharb/eslint-config",
"version": "22.1.3",
"author": "Jordan Harband",
"funding": {
"url": "https://github.com/sponsors/ljharb"
},
"description": "My shareable eslint config",
"license": "MIT",
"main": "index.js",
"exports": {
".": "./index.js",
"./esm": "./esm.json",
"./esm.json": "./esm.json",
"./node/0.4": "./node/0.4.json",
"./node/0.4.json": "./node/0.4.json",
"./node/4": "./node/6.json",
"./node/4.json": "./node/6.json",
"./node/6": "./node/6.json",
"./node/6.json": "./node/6.json",
"./node/8": "./node/8.json",
"./node/8.json": "./node/8.json",
"./node/10": "./node/10.json",
"./node/10.json": "./node/10.json",
"./node/12": "./node/12.json",
"./node/12.json": "./node/12.json",
"./node/14": "./node/14.json",
"./node/14.json": "./node/14.json",
"./node/16": "./node/16.json",
"./node/16.json": "./node/16.json",
"./node/18": "./node/18.json",
"./node/18.json": "./node/18.json",
"./node/20": "./node/20.json",
"./node/20.json": "./node/20.json",
"./node/22": "./node/22.json",
"./node/22.json": "./node/22.json",
"./node/24": "./node/24.json",
"./node/24.json": "./node/24.json",
"./node/latest": "./node/latest.json",
"./node/latest.json": "./node/latest.json",
"./parser": "./parser.js",
"./parser.js": "./parser.js",
"./tests": "./tests.json",
"./tests.json": "./tests.json",
"./flat": "./flat.mjs",
"./flat/esm": "./flat/esm.mjs",
"./flat/tests": "./flat/tests.mjs",
"./flat/node/0.4": "./flat/node/0.4.mjs",
"./flat/node/4": "./flat/node/4.mjs",
"./flat/node/6": "./flat/node/6.mjs",
"./flat/node/8": "./flat/node/8.mjs",
"./flat/node/10": "./flat/node/10.mjs",
"./flat/node/12": "./flat/node/12.mjs",
"./flat/node/14": "./flat/node/14.mjs",
"./flat/node/16": "./flat/node/16.mjs",
"./flat/node/18": "./flat/node/18.mjs",
"./flat/node/20": "./flat/node/20.mjs",
"./flat/node/22": "./flat/node/22.mjs",
"./flat/node/24": "./flat/node/24.mjs",
"./flat/node/latest": "./flat/node/latest.mjs",
"./package.json": "./package.json"
},
"scripts": {
"find-unused": "eslint-find-rules --unused ./eslint.config.mjs --flatConfig",
"prepack": "npmignore --auto --commentLines=autogenerated",
"prepublishOnly": "safe-publish-latest && npm test && npm run find-unused",
"prepublish": "not-in-publish || npm run prepublishOnly",
"prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
"lint": "eslint --ext=js,mjs . --ignore-pattern=test/fixtures",
"postlint": "attw -P && tsc",
"pretest": "npm run lint",
"test": "npm run --silent tests-only",
"posttest": "npx npm@\">=10.2\" audit --production",
"pretests-only": "node .",
"tests-only": "tape \"test/**.js\"",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"repository": {
"type": "git",
"url": "git://github.com/ljharb/eslint-config.git"
},
"keywords": [
"eslint",
"eslint-config"
],
"dependencies": {
"@eslint/eslintrc": "^3.3.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/core": "^1.0.1",
"@ljharb/tsconfig": "^0.3.2",
"@types/espree": "^10.1.0",
"@types/node": "^24.10.9",
"@types/semver": "^7.7.1",
"@types/tape": "^5.8.1",
"auto-changelog": "^2.5.0",
"eclint": "^2.8.1",
"eslint": "^8.8.0 || ^9.39.1",
"eslint-find-rules": "^4.2.0 || ^5.0.0",
"globals": "^16.5.0",
"in-publish": "^2.0.1",
"npmignore": "^0.3.5",
"safe-publish-latest": "^2.0.0",
"semver": "^6.3.1",
"tape": "^5.9.0",
"typescript": "next"
},
"peerDependencies": {
"eslint": "^8.8.0 || ^9.39.1"
},
"engines": {
"node": "^22.21 || ^24.11 || >=25.2.1"
},
"publishConfig": {
"ignore": [
".attw.json",
".editorconfig",
".github/workflows",
"eslint.config.mjs",
"tsconfig.json",
"test"
]
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false,
"hideCredit": true,
"startingVersion": "v19.0.0"
}
}