@html-eslint/types 0.40.0 → 0.41.0

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/lib/ast.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  import { AnyHTMLNode } from "./html-ast";
2
2
  import { AnyJsNode } from "./js-ast";
3
-
3
+ export { AnyToken } from "es-html-parser";
4
4
  export type AnyNode = AnyHTMLNode | AnyJsNode;
package/lib/html-ast.d.ts CHANGED
@@ -1,6 +1,4 @@
1
1
  import * as Parser from "es-html-parser";
2
- import eslint from "eslint";
3
- import * as estree from "estree";
4
2
 
5
3
  export interface Document extends Parser.DocumentNode {
6
4
  parent: null;
package/lib/js-ast.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import * as Parser from "es-html-parser";
2
1
  import eslint from "eslint";
3
2
  import * as estree from "estree";
4
3
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-eslint/types",
3
- "version": "0.40.0",
3
+ "version": "0.41.0",
4
4
  "description": "Types for @html-eslint/eslint-plugin",
5
5
  "author": "yeonjuan",
6
6
  "homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -22,11 +22,13 @@
22
22
  "bugs": {
23
23
  "url": "https://github.com/yeonjuan/html-eslint/issues"
24
24
  },
25
- "devDependencies": {
25
+ "dependencies": {
26
26
  "@types/estree": "^1.0.6",
27
27
  "es-html-parser": "0.2.0",
28
- "eslint": "^9.19.0",
29
- "typescript": "^5.7.2"
28
+ "eslint": "^9.19.0"
29
+ },
30
+ "devDependencies": {
31
+ "typescript": "^5.8.3"
30
32
  },
31
- "gitHead": "09bafbb13ab3437794e19549f69d60d52c63de73"
33
+ "gitHead": "f6950c3ef79ad8c1cd2b8430837b315cb043b63c"
32
34
  }