@typescript-eslint/typescript-estree 8.35.1 → 8.35.2-alpha.1

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.
Files changed (1) hide show
  1. package/package.json +12 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/typescript-estree",
3
- "version": "8.35.1",
3
+ "version": "8.35.2-alpha.1",
4
4
  "description": "A parser that converts TypeScript source code into an ESTree compatible form",
5
5
  "files": [
6
6
  "dist",
@@ -44,7 +44,6 @@
44
44
  "syntax"
45
45
  ],
46
46
  "scripts": {
47
- "//": "These package scripts are mostly here for convenience. Task running is handled by Nx at the root level.",
48
47
  "build": "yarn run -BT nx build",
49
48
  "clean": "rimraf dist/ coverage/",
50
49
  "format": "yarn run -T format",
@@ -53,10 +52,10 @@
53
52
  "typecheck": "yarn run -BT nx typecheck"
54
53
  },
55
54
  "dependencies": {
56
- "@typescript-eslint/project-service": "8.35.1",
57
- "@typescript-eslint/tsconfig-utils": "8.35.1",
58
- "@typescript-eslint/types": "8.35.1",
59
- "@typescript-eslint/visitor-keys": "8.35.1",
55
+ "@typescript-eslint/project-service": "8.35.2-alpha.1",
56
+ "@typescript-eslint/tsconfig-utils": "8.35.2-alpha.1",
57
+ "@typescript-eslint/types": "8.35.2-alpha.1",
58
+ "@typescript-eslint/visitor-keys": "8.35.2-alpha.1",
60
59
  "debug": "^4.3.4",
61
60
  "fast-glob": "^3.3.2",
62
61
  "is-glob": "^4.0.3",
@@ -67,6 +66,7 @@
67
66
  "devDependencies": {
68
67
  "@types/is-glob": "^4.0.4",
69
68
  "@vitest/coverage-v8": "^3.1.3",
69
+ "eslint": "*",
70
70
  "glob": "*",
71
71
  "rimraf": "*",
72
72
  "typescript": "*",
@@ -83,6 +83,11 @@
83
83
  "name": "typescript-estree",
84
84
  "includedScripts": [
85
85
  "clean"
86
- ]
86
+ ],
87
+ "targets": {
88
+ "lint": {
89
+ "command": "eslint"
90
+ }
91
+ }
87
92
  }
88
93
  }