@yopem/eslint-config 0.3.1 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +28 -27
package/package.json
CHANGED
|
@@ -1,19 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yopem/eslint-config",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
|
+
"config",
|
|
6
7
|
"eslint",
|
|
7
|
-
"eslint-config"
|
|
8
|
-
|
|
8
|
+
"eslint-config"
|
|
9
|
+
],
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/yopem/config/issues"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": "Karyana Yandi <karyana@yandi.me>",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/yopem/config",
|
|
18
|
+
"directory": "packages/config/eslint"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"src"
|
|
9
22
|
],
|
|
10
23
|
"type": "module",
|
|
24
|
+
"sideEffects": false,
|
|
11
25
|
"main": "src/base.js",
|
|
12
26
|
"module": "src/base.js",
|
|
13
27
|
"types": "src/types.d.ts",
|
|
14
|
-
"files": [
|
|
15
|
-
"src"
|
|
16
|
-
],
|
|
17
28
|
"exports": {
|
|
18
29
|
"./base": {
|
|
19
30
|
"source": "./src/base.js",
|
|
@@ -38,48 +49,37 @@
|
|
|
38
49
|
},
|
|
39
50
|
"./package.json": "./package.json"
|
|
40
51
|
},
|
|
41
|
-
"sideEffects": false,
|
|
42
52
|
"publishConfig": {
|
|
43
53
|
"access": "public"
|
|
44
54
|
},
|
|
45
|
-
"author": "Karyana Yandi <karyana@yandi.me>",
|
|
46
|
-
"license": "MIT",
|
|
47
|
-
"repository": {
|
|
48
|
-
"type": "git",
|
|
49
|
-
"url": "https://github.com/yopem/config",
|
|
50
|
-
"directory": "packages/config/eslint"
|
|
51
|
-
},
|
|
52
|
-
"bugs": {
|
|
53
|
-
"url": "https://github.com/yopem/config/issues"
|
|
54
|
-
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"lint": "eslint ./src",
|
|
57
57
|
"lint:fix": "eslint ./src --fix",
|
|
58
58
|
"typecheck": "tsc --noEmit"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@eslint/compat": "1.
|
|
61
|
+
"@eslint/compat": "1.4.1",
|
|
62
62
|
"@eslint/js": "9.32.0",
|
|
63
|
-
"@next/eslint-plugin-next": "
|
|
63
|
+
"@next/eslint-plugin-next": "16.0.1",
|
|
64
64
|
"@types/eslint": "9.6.1",
|
|
65
65
|
"eslint": "9.32.0",
|
|
66
66
|
"eslint-config-prettier": "10.1.8",
|
|
67
67
|
"eslint-plugin-import": "2.32.0",
|
|
68
68
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
69
|
-
"eslint-plugin-prettier": "5.5.
|
|
69
|
+
"eslint-plugin-prettier": "5.5.4",
|
|
70
70
|
"eslint-plugin-react": "7.37.5",
|
|
71
|
-
"eslint-plugin-react-hooks": "
|
|
72
|
-
"typescript-eslint": "8.
|
|
71
|
+
"eslint-plugin-react-hooks": "7.0.1",
|
|
72
|
+
"typescript-eslint": "8.54.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@yopem/typescript-config": "workspace:*",
|
|
76
|
-
"eslint-plugin-turbo": "2.
|
|
77
|
-
"typescript": "5.9.
|
|
76
|
+
"eslint-plugin-turbo": "2.6.0",
|
|
77
|
+
"typescript": "5.9.3"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"@eslint/compat": "^1.2.7",
|
|
81
81
|
"@eslint/js": "^9.21.0",
|
|
82
|
-
"@next/eslint-plugin-next": "^15.2.0",
|
|
82
|
+
"@next/eslint-plugin-next": "^15.2.0 || ^16.0.0",
|
|
83
83
|
"@types/eslint": "^9.6.1",
|
|
84
84
|
"eslint": "^9.21.0",
|
|
85
85
|
"eslint-config-prettier": "^10.0.2",
|
|
@@ -87,7 +87,8 @@
|
|
|
87
87
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
88
88
|
"eslint-plugin-prettier": "^5.2.3",
|
|
89
89
|
"eslint-plugin-react": "^7.37.4",
|
|
90
|
-
"eslint-plugin-react-hooks": "^5.1.0",
|
|
90
|
+
"eslint-plugin-react-hooks": "^5.1.0 || ^7.0.0",
|
|
91
91
|
"typescript-eslint": "^8.25.0"
|
|
92
|
-
}
|
|
92
|
+
},
|
|
93
|
+
"prettier": "@yopem/prettier-config/base"
|
|
93
94
|
}
|