@eslinted/core 19.0.1 → 19.0.2-rc.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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "$schema": "https://json.schemastore.org/package",
4
4
  "$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
5
5
  "name": "@eslinted/core",
6
- "version": "19.0.1",
6
+ "version": "19.0.2-rc.0",
7
7
  "repository": "github:jimmy-zhening-luo/linted-core",
8
8
  "private": false,
9
9
  "engineStrict": true,
@@ -14,7 +14,7 @@
14
14
  "type": "module",
15
15
  "peerDependenciesMeta": {},
16
16
  "dependencies": {
17
- "globals": "^16.2.0"
17
+ "globals": "^16.3.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/chai": "^5.2.2",
@@ -2,6 +2,7 @@ import type { Dependencies } from "../../../scope";
2
2
 
3
3
  export interface IManifest {
4
4
  languageOptions: {
5
+ [property: string]: unknown;
5
6
  parser:
6
7
  | null
7
8
  | Dependencies.Parsers
@@ -10,14 +11,13 @@ export interface IManifest {
10
11
  | null
11
12
  | string
12
13
  ;
13
- [property: string]: unknown;
14
14
  };
15
15
  parserOptions: {
16
+ [property: string]: unknown;
16
17
  parser:
17
18
  | null
18
19
  | Dependencies.Parsers
19
20
  ;
20
- [property: string]: unknown;
21
21
  };
22
22
  language?: string;
23
23
  processor?: string;