@remotion/lottie 4.0.226 → 4.0.228

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.
@@ -0,0 +1,7 @@
1
+ import {remotionFlatConfig} from '@remotion/eslint-config-internal';
2
+
3
+ const config = remotionFlatConfig({react: true});
4
+
5
+ export default {
6
+ ...config,
7
+ };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/lottie"
4
4
  },
5
5
  "name": "@remotion/lottie",
6
- "version": "4.0.226",
6
+ "version": "4.0.228",
7
7
  "description": "Include Lottie animations in Remotion",
8
8
  "main": "dist/cjs/index.js",
9
9
  "types": "dist/cjs/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "license": "SEE LICENSE IN LICENSE.md",
21
21
  "dependencies": {
22
- "remotion": "4.0.226"
22
+ "remotion": "4.0.228"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "lottie-web": "^5",
@@ -37,7 +37,9 @@
37
37
  },
38
38
  "devDependencies": {
39
39
  "react": "18.3.1",
40
- "react-dom": "18.3.1"
40
+ "react-dom": "18.3.1",
41
+ "eslint": "9.14.0",
42
+ "@remotion/eslint-config-internal": "4.0.228"
41
43
  },
42
44
  "keywords": [
43
45
  "remotion",
@@ -53,8 +55,8 @@
53
55
  "homepage": "https://www.remotion.dev/docs/lottie",
54
56
  "scripts": {
55
57
  "formatting": "prettier src --check",
56
- "lint": "eslint src --ext ts,tsx",
58
+ "lint": "eslint src",
57
59
  "test": "bun test src",
58
- "make": "bun --env-file=../.env.bundle bundle.ts"
60
+ "make": "tsc -d && bun --env-file=../.env.bundle bundle.ts"
59
61
  }
60
62
  }