@will-stone/eslint-config 15.0.3 → 15.0.5
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/README.md +0 -3
- package/package.json +19 -14
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@will-stone/eslint-config",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.5",
|
|
4
4
|
"description": "Will Stone's ESLint config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint-config"
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build": "tsup src/index.ts --format esm --clean --dts --shims",
|
|
22
|
-
"predev": "
|
|
22
|
+
"predev": "pnpm build",
|
|
23
23
|
"dev": "tsup src/index.ts --format esm --shims --watch & config-inspector --config ./eslint-config-for-inspector.js",
|
|
24
|
-
"lint": "
|
|
24
|
+
"lint": "pnpm stub && eslint .",
|
|
25
25
|
"prepare": "husky",
|
|
26
|
-
"prepublishOnly": "
|
|
26
|
+
"prepublishOnly": "pnpm build",
|
|
27
27
|
"release": "release-it",
|
|
28
28
|
"stub": "tsup src/index.ts --format esm",
|
|
29
29
|
"test": "vitest",
|
|
@@ -39,17 +39,17 @@
|
|
|
39
39
|
},
|
|
40
40
|
"prettier": "@will-stone/prettier-config",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
43
|
-
"@typescript-eslint/parser": "^8.
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^8.29.0",
|
|
43
|
+
"@typescript-eslint/parser": "^8.29.0",
|
|
44
44
|
"confusing-browser-globals": "^1.0.11",
|
|
45
45
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
46
|
-
"eslint-plugin-import-x": "^4.
|
|
46
|
+
"eslint-plugin-import-x": "^4.10.0",
|
|
47
47
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
48
|
-
"eslint-plugin-n": "^17.
|
|
48
|
+
"eslint-plugin-n": "^17.17.0",
|
|
49
49
|
"eslint-plugin-unicorn": "^58.0.0",
|
|
50
50
|
"globals": "^16.0.0",
|
|
51
51
|
"globby": "^14.1.0",
|
|
52
|
-
"type-fest": "^4.
|
|
52
|
+
"type-fest": "^4.39.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@commits-with-character/conventional-changelog-preset": "^2.0.0",
|
|
@@ -57,10 +57,10 @@
|
|
|
57
57
|
"@release-it/conventional-changelog": "^10.0.0",
|
|
58
58
|
"@types/confusing-browser-globals": "^1.0.3",
|
|
59
59
|
"@types/eslint": "^9.6.1",
|
|
60
|
-
"@types/node": "^22.13.
|
|
61
|
-
"@typescript-eslint/utils": "^8.
|
|
60
|
+
"@types/node": "^22.13.17",
|
|
61
|
+
"@typescript-eslint/utils": "^8.29.0",
|
|
62
62
|
"@vitest/eslint-plugin": "^1.1.38",
|
|
63
|
-
"@will-stone/prettier-config": "^9.0.
|
|
63
|
+
"@will-stone/prettier-config": "^9.0.2",
|
|
64
64
|
"astro-eslint-parser": "^1.2.2",
|
|
65
65
|
"eslint-plugin-astro": "^1.3.1",
|
|
66
66
|
"eslint-plugin-jest": "^28.11.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"release-it": "^18.1.2",
|
|
75
75
|
"tsup": "^8.4.0",
|
|
76
76
|
"typescript": "^5.8.2",
|
|
77
|
-
"vitest": "^3.
|
|
77
|
+
"vitest": "^3.1.1"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"@vitest/eslint-plugin": "^1.1.38",
|
|
@@ -109,5 +109,10 @@
|
|
|
109
109
|
"optional": true
|
|
110
110
|
}
|
|
111
111
|
},
|
|
112
|
-
"packageManager": "pnpm@10.6.5"
|
|
112
|
+
"packageManager": "pnpm@10.6.5",
|
|
113
|
+
"pnpm": {
|
|
114
|
+
"onlyBuiltDependencies": [
|
|
115
|
+
"esbuild"
|
|
116
|
+
]
|
|
117
|
+
}
|
|
113
118
|
}
|