Skip to content

Commit 0b55a3b

Browse files
lishaduckota-meshi
andcommitted
refactor: drop tseslint/utils dep
Co-authored-by: Yosuke Ota <otameshiyo23@gmail.com>
1 parent 1cceb44 commit 0b55a3b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@
7979
}
8080
},
8181
"dependencies": {
82-
"@typescript-eslint/utils": "^8.31.1",
8382
"tinyglobby": "^0.2.12"
8483
},
8584
"devDependencies": {

src/meta.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
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 };
52

3+
const meta: { name: string; version: string } = { name: pkgName, version };
64
export default meta;
75

86
export const name: string = pkgName;

0 commit comments

Comments
 (0)