We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cceb44 commit 0b55a3bCopy full SHA for 0b55a3b
package.json
@@ -79,7 +79,6 @@
79
}
80
},
81
"dependencies": {
82
- "@typescript-eslint/utils": "^8.31.1",
83
"tinyglobby": "^0.2.12"
84
85
"devDependencies": {
src/meta.ts
@@ -1,8 +1,6 @@
1
import { name as pkgName, version } from "../package.json";
2
-import type { TSESLint } from "@typescript-eslint/utils";
3
-
4
-const meta: TSESLint.FlatConfig.PluginMeta = { name: pkgName, version };
5
+const meta: { name: string; version: string } = { name: pkgName, version };
6
export default meta;
7
8
export const name: string = pkgName;
0 commit comments