@whitetrefoil/eslint-config 0.26.0 → 0.27.0

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +30 -7
package/README.md CHANGED
@@ -86,6 +86,10 @@ See Also
86
86
  Changelog
87
87
  ---------
88
88
 
89
+ ### v0.27.0
90
+
91
+ * Set peerDependencies optional;
92
+
89
93
  ### v0.26.0
90
94
 
91
95
  * Upgrade rules;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whitetrefoil/eslint-config",
3
- "version": "0.26.0",
3
+ "version": "0.27.0",
4
4
  "author": "WhiteTrefoil <whitetrefoil@gmail.com>",
5
5
  "license": "Unlicense",
6
6
  "engines": {
@@ -24,13 +24,36 @@
24
24
  "typescript": "^4.6.2"
25
25
  },
26
26
  "peerDependencies": {
27
- "@typescript-eslint/eslint-plugin": "^5.8.0",
28
- "@typescript-eslint/parser": "^5.8.0",
27
+ "@typescript-eslint/eslint-plugin": "^5.13.0",
28
+ "@typescript-eslint/parser": "^5.13.0",
29
29
  "eslint-plugin-node": "^11.1.0",
30
- "eslint-plugin-react": "^7.28.0",
30
+ "eslint-plugin-react": "^7.29.2",
31
31
  "eslint-plugin-react-hooks": "^4.3.0",
32
- "eslint-plugin-vue": "^8.2.0",
33
- "typescript": "^4.5.4"
32
+ "eslint-plugin-vue": "^8.5.0",
33
+ "typescript": "^4.6.2"
34
+ },
35
+ "peerDependenciesMeta": {
36
+ "@typescript-eslint/eslint-plugin": {
37
+ "optional": true
38
+ },
39
+ "@typescript-eslint/parser": {
40
+ "optional": true
41
+ },
42
+ "eslint-plugin-node": {
43
+ "optional": true
44
+ },
45
+ "eslint-plugin-react": {
46
+ "optional": true
47
+ },
48
+ "eslint-plugin-react-hooks": {
49
+ "optional": true
50
+ },
51
+ "eslint-plugin-vue": {
52
+ "optional": true
53
+ },
54
+ "typescript": {
55
+ "optional": true
56
+ }
34
57
  },
35
- "packageManager": "yarn@3.1.1"
58
+ "packageManager": "yarn@3.2.0"
36
59
  }