-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "@pob/eslint-plugin",
"version": "59.3.0",
"description": "eslint plugin for react",
"keywords": [],
"author": "Christophe Hurpeau <[email protected]> (https://christophe.hurpeau.com)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/christophehurpeau/eslint-config-pob.git",
"directory": "@pob/eslint-plugin"
},
"homepage": "https://github.com/christophehurpeau/eslint-config-pob",
"type": "module",
"engines": {
"node": ">=20.9.0"
},
"sideEffects": false,
"main": "./lib/index.js",
"exports": {
"./package.json": "./package.json",
".": "./lib/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"scripts": {
"lint": "yarn run lint:eslint",
"lint:eslint": "yarn ../.. run eslint --quiet @pob/eslint-plugin"
},
"pob": {},
"prettier": "@pob/root/prettier-config",
"peerDependencies": {
"eslint": "^9.9.0",
"typescript": ">=5.0.0 <5.8.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@typescript-eslint/utils": "8.18.2",
"eslint-plugin-react": "^7.35.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@typescript-eslint/rule-tester": "8.18.2",
"eslint": "9.17.0",
"typescript": "5.7.2",
"typescript-eslint": "8.18.2"
}
}