-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.56 KB
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
{
"name": "@sourcegraph/eslint-config",
"description": "Shared ESLint config for Sourcegraph projects",
"version": "0.0.0-DEVELOPMENT",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/eslint-config.git"
},
"engines": {
"node": ">=22.22.2"
},
"files": [
".eslintrc.js",
"flat.js"
],
"main": ".eslintrc.js",
"exports": {
".": "./.eslintrc.js",
"./flat": "./flat.js"
},
"scripts": {
"semantic-release": "semantic-release",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"test": "node --test"
},
"devDependencies": {
"@sourcegraph/prettierrc": "^3.0.3",
"eslint": "^10.11.0",
"prettier": "^3.9.8",
"semantic-release": "^25.0.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@eslint/compat": "^2.1.1",
"@eslint/eslintrc": "^3.3.7",
"@eslint/js": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-ban": "^2.0.0",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest-dom": "^5.10.1",
"eslint-plugin-jsdoc": "^64.5.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-unused-imports": "^4.4.1"
},
"peerDependencies": {
"eslint": "^10.4.0",
"typescript": ">=4.8.4 <6.1.0"
}
}