From bf2021d9456074c011809ca5692b1caf84a501a8 Mon Sep 17 00:00:00 2001 From: Bill Mill Date: Mon, 12 Aug 2024 11:19:44 -0400 Subject: [PATCH] fix: change parser peerDep to >=6 eslint/parser is now up to version 8, and it seems likely that this plugin will continue working with future versions, so my proposal is just to make the peerDep >= 6. Alternately, I'd be happy to change it to just add `|| ^8` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 19239c5..3f360a6 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "typescript": "5.1.6" }, "peerDependencies": { - "@typescript-eslint/parser": "^6 || ^7", + "@typescript-eslint/parser": ">=6", "eslint": "^7 || ^8", "typescript": "^3 || ^4 || ^5" },