-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.28 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.28 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
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
{
"version": "0.1.0",
"description": "ESLint plugin with configurations and custom rules for Factory projects",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"eslint-config",
"typescript",
"react",
"linter",
"factory"
],
"author": "Factory",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Factory-AI/eslint-plugin.git"
},
"homepage": "https://github.com/Factory-AI/eslint-plugin#readme",
"bugs": {
"url": "https://github.com/Factory-AI/eslint-plugin/issues"
},
"main": "index.js",
"files": [
"index.js",
"configs/*.js",
"rules/**/*.js",
"!configs/*.test.js",
"!rules/**/*.test.js",
"!jest.config.js"
],
"exports": {
".": "./index.js",
"./configs/base": "./configs/base.js",
"./configs/recommended": "./configs/recommended.js",
"./configs/backend": "./configs/backend.js",
"./configs/frontend": "./configs/frontend.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@eslint-react/eslint-plugin": "^1.53.1",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "15.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-no-barrel-files": "^1.2.2",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^4.1.4"
},
"devDependencies": {
"eslint": ">=8.0.0",
"jest": "^30.2.0"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"name": "@factory/eslint-plugin",
"directories": {
"example": "examples"
}
}