@remotion/eslint-config 4.0.143 → 4.0.145
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/LICENSE.md +4 -0
- package/dist/auto-import-rules.d.ts +2 -0
- package/dist/auto-import-rules.js +2 -0
- package/dist/index.d.ts +8 -0
- package/package.json +2 -2
package/LICENSE.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Remotion License
|
|
2
2
|
|
|
3
|
+
In Remotion 5.0, the license will slightly change. [View the changes here](https://github.com/remotion-dev/remotion/pull/3750).
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
3
7
|
Depending on the type of your legal entity, you are granted permission to use Remotion for your project. Individuals and small companies are allowed to use Remotion to create videos for free (even commercial), while a company license is required for for-profit organizations of a certain size. This two-tier system was designed to ensure funding for this project while still allowing the source code to be available and the program to be free for most. Read below for the exact terms of use.
|
|
4
8
|
|
|
5
9
|
- [Free license](#free-license)
|
|
@@ -17,6 +17,8 @@ exports.autoImports = {
|
|
|
17
17
|
interpolateColors: "import {interpolateColors} from 'remotion'",
|
|
18
18
|
Easing: "import {Easing} from 'remotion'",
|
|
19
19
|
getInputProps: "import {getInputProps} from 'remotion'",
|
|
20
|
+
getStaticFiles: "import {getStaticFiles} from '@remotion/studio'",
|
|
21
|
+
watchStaticFiles: "import {watchStaticFiles} from '@remotion/studio'",
|
|
20
22
|
continueRender: "import {continueRender} from 'remotion'",
|
|
21
23
|
delayRender: "import {delayRender} from 'remotion'",
|
|
22
24
|
AbsoluteFill: "import {AbsoluteFill} from 'remotion'",
|
package/dist/index.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ declare const _default: {
|
|
|
38
38
|
interpolateColors: string;
|
|
39
39
|
Easing: string;
|
|
40
40
|
getInputProps: string;
|
|
41
|
+
getStaticFiles: string;
|
|
42
|
+
watchStaticFiles: string;
|
|
41
43
|
continueRender: string;
|
|
42
44
|
delayRender: string;
|
|
43
45
|
AbsoluteFill: string;
|
|
@@ -463,6 +465,8 @@ declare const _default: {
|
|
|
463
465
|
interpolateColors: string;
|
|
464
466
|
Easing: string;
|
|
465
467
|
getInputProps: string;
|
|
468
|
+
getStaticFiles: string;
|
|
469
|
+
watchStaticFiles: string;
|
|
466
470
|
continueRender: string;
|
|
467
471
|
delayRender: string;
|
|
468
472
|
AbsoluteFill: string;
|
|
@@ -897,6 +901,8 @@ declare const _default: {
|
|
|
897
901
|
interpolateColors: string;
|
|
898
902
|
Easing: string;
|
|
899
903
|
getInputProps: string;
|
|
904
|
+
getStaticFiles: string;
|
|
905
|
+
watchStaticFiles: string;
|
|
900
906
|
continueRender: string;
|
|
901
907
|
delayRender: string;
|
|
902
908
|
AbsoluteFill: string;
|
|
@@ -1322,6 +1328,8 @@ declare const _default: {
|
|
|
1322
1328
|
interpolateColors: string;
|
|
1323
1329
|
Easing: string;
|
|
1324
1330
|
getInputProps: string;
|
|
1331
|
+
getStaticFiles: string;
|
|
1332
|
+
watchStaticFiles: string;
|
|
1325
1333
|
continueRender: string;
|
|
1326
1334
|
delayRender: string;
|
|
1327
1335
|
AbsoluteFill: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/eslint-config",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.145",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"eslint-plugin-10x": "1.5.2",
|
|
18
18
|
"eslint-plugin-react": "7.32.2",
|
|
19
19
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
20
|
-
"@remotion/eslint-plugin": "4.0.
|
|
20
|
+
"@remotion/eslint-plugin": "4.0.145"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"eslint": ">=7.15.0"
|