@remotion/eslint-config-flat 4.0.254 → 4.0.256

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,9 +3,9 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/eslint-config-flat"
4
4
  },
5
5
  "name": "@remotion/eslint-config-flat",
6
- "version": "4.0.254",
6
+ "version": "4.0.256",
7
7
  "description": "Default configuration for Remotion templates (ESLint >= 9)",
8
- "main": "dist/index.js",
8
+ "main": "dist/esm/index.mjs",
9
9
  "type": "module",
10
10
  "files": [
11
11
  "dist"
@@ -25,8 +25,8 @@
25
25
  "eslint-plugin-react": "7.37.4",
26
26
  "eslint-plugin-react-hooks": "5.2.0-canary-de1eaa26-20250124",
27
27
  "eslint": "9.14.0",
28
- "@remotion/eslint-plugin": "4.0.254",
29
- "@remotion/eslint-config-internal": "4.0.254"
28
+ "@remotion/eslint-config-internal": "4.0.256",
29
+ "@remotion/eslint-plugin": "4.0.256"
30
30
  },
31
31
  "keywords": [
32
32
  "remotion",
@@ -34,6 +34,15 @@
34
34
  "react",
35
35
  "player"
36
36
  ],
37
+ "exports": {
38
+ "./package.json": "./package.json",
39
+ ".": {
40
+ "types": "./dist/index.d.ts",
41
+ "module": "./dist/esm/index.mjs",
42
+ "import": "./dist/esm/index.mjs",
43
+ "require": "./dist/index.js"
44
+ }
45
+ },
37
46
  "publishConfig": {
38
47
  "access": "public"
39
48
  },
@@ -1,2 +0,0 @@
1
- import type { Linter } from 'eslint';
2
- export declare const getPlugins: (react: boolean) => Linter.Config["plugins"];
@@ -1,4 +0,0 @@
1
- import typescriptPlugin from '@typescript-eslint/eslint-plugin';
2
- export const getPlugins = (react) => ({
3
- '@typescript-eslint': typescriptPlugin,
4
- });