react-eslint-standard 10.0.2 → 10.1.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/dist/index.d.ts CHANGED
@@ -1,12 +1,12 @@
1
- import * as _eslint_config_helpers from '@eslint/config-helpers';
2
- import { TSESLint } from '@typescript-eslint/utils';
1
+ import * as eslint_config from 'eslint/config';
3
2
  import { ConfigObject } from '@eslint/core';
3
+ import { TSESLint } from '@typescript-eslint/utils';
4
4
 
5
5
  interface Config extends Omit<ConfigObject, 'linterOptions' | 'name' | 'processor'> {
6
6
  extends?: ConfigObject[];
7
7
  globals?: TSESLint.SharedConfig.GlobalsConfig;
8
8
  }
9
- declare function defineConfig(config?: Config): _eslint_config_helpers.Config[];
9
+ declare function defineConfig(config?: Config): eslint_config.Config[];
10
10
 
11
11
  export { defineConfig };
12
12
  export type { Config };
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import eslint from '@eslint/js';
2
2
  import vitest from '@vitest/eslint-plugin';
3
+ import { defineConfig as defineConfig$1 } from 'eslint/config';
3
4
  import prettierConfig from 'eslint-config-prettier';
4
5
  import prettierRecommended from 'eslint-plugin-prettier/recommended';
5
6
  import react from 'eslint-plugin-react';
@@ -7,7 +8,6 @@ import simpleImportSort from 'eslint-plugin-simple-import-sort';
7
8
  import Globals from 'globals';
8
9
  import tseslint from 'typescript-eslint';
9
10
  import { tslintRules } from 'typescript-eslint-standard';
10
- import { defineConfig as defineConfig$1 } from 'eslint/config';
11
11
 
12
12
  const reactRules = {
13
13
  'react/jsx-uses-react': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-eslint-standard",
3
- "version": "10.0.2",
3
+ "version": "10.1.0",
4
4
  "description": "quickly start eslint in react",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -20,7 +20,7 @@
20
20
  "dependencies": {
21
21
  "eslint-plugin-react": "^7.37.5",
22
22
  "globals": "^17.4.0",
23
- "typescript-eslint-standard": "^10.0.2"
23
+ "typescript-eslint-standard": "^10.1.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@rollup/plugin-commonjs": "^29.0.2",
@@ -30,11 +30,10 @@
30
30
  "@rollup/plugin-terser": "^1.0.0",
31
31
  "@rollup/plugin-typescript": "^12.3.0",
32
32
  "@types/node": "^24.12.0",
33
- "rollup": "^4.59.0",
34
- "rollup-plugin-dts": "^6.4.0",
33
+ "rollup": "^4.60.0",
34
+ "rollup-plugin-dts": "^6.4.1",
35
35
  "tslib": "^2.8.1",
36
- "typescript": "^5.9.3",
37
- "vitest": "^4.1.0"
36
+ "vitest": "^4.1.1"
38
37
  },
39
38
  "author": "mivui",
40
39
  "license": "MIT",