@aneuhold/eslint-config 1.0.6 → 1.0.8
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 +11 -5
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aneuhold/eslint-config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Main ESLint Configuration for personal projects",
|
|
5
5
|
"main": "./src/ts-lib-config.js",
|
|
6
6
|
"packageManager": "yarn@4.2.2",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"pushpub": "
|
|
8
|
+
"pushpub": "npm version patch && git push",
|
|
9
9
|
"upgrade:all": "yarn upgrade --latest",
|
|
10
10
|
"lint": "yarn eslint"
|
|
11
11
|
},
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@eslint/js": "^9.3.0",
|
|
35
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
36
|
-
"@typescript-eslint/parser": "^7.
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "^7.10.0",
|
|
36
|
+
"@typescript-eslint/parser": "^7.10.0",
|
|
37
37
|
"eslint-config-prettier": "^9.1.0",
|
|
38
38
|
"eslint-plugin-import": "^2.29.1",
|
|
39
39
|
"eslint-plugin-prettier": "^5.1.3",
|
|
40
40
|
"eslint-plugin-svelte": "^2.39.0",
|
|
41
41
|
"prettier-plugin-svelte": "^3.2.3",
|
|
42
|
-
"typescript-eslint": "^7.
|
|
42
|
+
"typescript-eslint": "^7.10.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/node": "^20.12.12",
|
|
@@ -47,5 +47,11 @@
|
|
|
47
47
|
"prettier": "^3.2.5",
|
|
48
48
|
"svelte": "^4.2.17",
|
|
49
49
|
"typescript": "^5.4.5"
|
|
50
|
+
},
|
|
51
|
+
"resolutions": {
|
|
52
|
+
"globals": "^15.3.0"
|
|
53
|
+
},
|
|
54
|
+
"resolutionsComments": {
|
|
55
|
+
"globals": "This is a temporary fix for the globals package due to this issue: https://github.com/eslint/eslint/discussions/17868. Once other packages pull 15+ then should be able to remove this"
|
|
50
56
|
}
|
|
51
57
|
}
|