@typescript-eslint/utils 8.50.2-alpha.9 → 8.51.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.
@@ -25,6 +25,13 @@ export declare namespace SharedConfig {
25
25
  * The meta.name property should match the npm package name for your plugin.
26
26
  */
27
27
  name: string;
28
+ /**
29
+ * If you followed the classic style to name your package
30
+ * (e.g. `eslint-plugin-X`, `@X/eslint-plugin`, or `@X/eslint-plugin-Y`),
31
+ * then this should match the classic namespace inferred for your package
32
+ * (e.g. `X`, `@X`, or `@X/Y`, respectively).
33
+ */
34
+ namespace?: string;
28
35
  /**
29
36
  * The meta.version property should match the npm package version for your plugin.
30
37
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/utils",
3
- "version": "8.50.2-alpha.9",
3
+ "version": "8.51.0",
4
4
  "description": "Utilities for working with TypeScript + ESLint together",
5
5
  "files": [
6
6
  "dist",
@@ -62,9 +62,9 @@
62
62
  },
63
63
  "dependencies": {
64
64
  "@eslint-community/eslint-utils": "^4.7.0",
65
- "@typescript-eslint/scope-manager": "8.50.2-alpha.9",
66
- "@typescript-eslint/types": "8.50.2-alpha.9",
67
- "@typescript-eslint/typescript-estree": "8.50.2-alpha.9"
65
+ "@typescript-eslint/scope-manager": "8.51.0",
66
+ "@typescript-eslint/types": "8.51.0",
67
+ "@typescript-eslint/typescript-estree": "8.51.0"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "eslint": "^8.57.0 || ^9.0.0",