-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
71
72
73
74
75
76
77
78
{
"name": "eslint-config-polaris",
"version": "6.13.0",
"description": "代码规范 ⭐️",
"main": "index.js",
"publishConfig": {
"@weishaodaren:registry": "https://npm.pkg.github.com"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weishaodaren/eslint-config-polaris.git"
},
"author": "weishaodaren (weishaodaren@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/weishaodaren/eslint-config-polaris/issues"
},
"exports": {
".": "./index.js",
"./rules/javascript": "./rules/javascript.js",
"./rules/typescript": "./rules/typescript.js",
"./rules/import": "./rules/import.js",
"./rules/react": "./rules/react.js",
"./rules/prettier": "./rules/prettier.js"
},
"homepage": "https://github.com/weishaodaren/eslint-config-polaris#readme",
"keywords": [
"eslint",
"prettier",
"react",
"typescript-eslint"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "7.x",
"@typescript-eslint/parser": "7.x",
"eslint": ">=8.24.0",
"eslint-config-prettier": "^9.x",
"eslint-plugin-import": "^2.x",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.0",
"typescript": "5.x"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"typescript": {
"optional": true
}
}
}