@remotion/effects 4.0.469 → 4.0.471
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/esm/evolve.mjs +398 -0
- package/dist/esm/fisheye.mjs +430 -0
- package/dist/esm/index.mjs +893 -0
- package/dist/esm/lines.mjs +487 -0
- package/dist/esm/pixel-dissolve.mjs +369 -0
- package/dist/esm/rings.mjs +461 -0
- package/dist/esm/scanlines.mjs +381 -0
- package/dist/esm/waves.mjs +540 -0
- package/dist/esm/white-noise.mjs +279 -0
- package/dist/esm/zigzag.mjs +531 -0
- package/dist/evolve.d.ts +43 -0
- package/dist/fisheye/fisheye-runtime.d.ts +28 -0
- package/dist/fisheye/fisheye-shaders.d.ts +2 -0
- package/dist/fisheye/index.d.ts +26 -0
- package/dist/fisheye.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/lines.d.ts +61 -0
- package/dist/pixel-dissolve.d.ts +10 -0
- package/dist/rings.d.ts +48 -0
- package/dist/scanlines.d.ts +15 -0
- package/dist/visual-test/effects-visual.test.d.ts +1 -0
- package/dist/visual-test/visual-utils.d.ts +13 -0
- package/dist/waves.d.ts +91 -0
- package/dist/white-noise.d.ts +9 -0
- package/dist/zigzag.d.ts +81 -0
- package/package.json +79 -3
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type PixelDissolveParams = {
|
|
2
|
+
readonly progress?: number;
|
|
3
|
+
readonly columns?: number;
|
|
4
|
+
readonly rows?: number;
|
|
5
|
+
readonly seed?: number;
|
|
6
|
+
readonly feather?: number;
|
|
7
|
+
};
|
|
8
|
+
export declare const pixelDissolve: (params?: (PixelDissolveParams & {
|
|
9
|
+
readonly disabled?: boolean | undefined;
|
|
10
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
package/dist/rings.d.ts
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export declare const ringsSchema: {
|
|
2
|
+
readonly center: {
|
|
3
|
+
readonly type: "uv-coordinate";
|
|
4
|
+
readonly min: 0;
|
|
5
|
+
readonly max: 1;
|
|
6
|
+
readonly step: 0.01;
|
|
7
|
+
readonly default: readonly [0.5, 0.5];
|
|
8
|
+
readonly description: "Center";
|
|
9
|
+
};
|
|
10
|
+
readonly thickness: {
|
|
11
|
+
readonly type: "number";
|
|
12
|
+
readonly min: 0.1;
|
|
13
|
+
readonly max: 400;
|
|
14
|
+
readonly step: 0.1;
|
|
15
|
+
readonly default: 40;
|
|
16
|
+
readonly description: "Thickness";
|
|
17
|
+
};
|
|
18
|
+
readonly gap: {
|
|
19
|
+
readonly type: "number";
|
|
20
|
+
readonly min: 0;
|
|
21
|
+
readonly max: 400;
|
|
22
|
+
readonly step: 0.1;
|
|
23
|
+
readonly default: 0;
|
|
24
|
+
readonly description: "Gap";
|
|
25
|
+
};
|
|
26
|
+
readonly offset: {
|
|
27
|
+
readonly type: "number";
|
|
28
|
+
readonly step: 0.1;
|
|
29
|
+
readonly default: 0;
|
|
30
|
+
readonly description: "Offset";
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
export type RingsCenter = readonly [number, number];
|
|
34
|
+
export type RingsParams = {
|
|
35
|
+
/** Ring colors, assigned cyclically. Same semantics as lines(). */
|
|
36
|
+
readonly colors?: readonly string[];
|
|
37
|
+
/** Center of the rings, normalized from `0` to `1` in x/y. */
|
|
38
|
+
readonly center?: RingsCenter;
|
|
39
|
+
/** Thickness of each colored ring in pixels. Same as lines(). */
|
|
40
|
+
readonly thickness?: number;
|
|
41
|
+
/** Transparent gap in pixels between rings. Same as lines(). */
|
|
42
|
+
readonly gap?: number;
|
|
43
|
+
/** Radial offset in pixels. Animate to expand or contract the rings. */
|
|
44
|
+
readonly offset?: number;
|
|
45
|
+
};
|
|
46
|
+
export declare const rings: (params?: (RingsParams & {
|
|
47
|
+
readonly disabled?: boolean | undefined;
|
|
48
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type ScanlinesParams = {
|
|
2
|
+
/** Strength of the scanline modulation from `0` to `1`. Defaults to `0.15`. */
|
|
3
|
+
readonly amount?: number;
|
|
4
|
+
/** Distance between scanlines in pixels. Defaults to `4`. */
|
|
5
|
+
readonly spacing?: number;
|
|
6
|
+
/** Thickness of each scanline in pixels. Defaults to `1`. */
|
|
7
|
+
readonly thickness?: number;
|
|
8
|
+
/** Vertical offset in pixels. Animate this value to scroll the scanlines. Defaults to `0`. */
|
|
9
|
+
readonly offset?: number;
|
|
10
|
+
/** Multiply the scanline contribution with the input colors before blending. Defaults to `false`. */
|
|
11
|
+
readonly premultiply?: boolean;
|
|
12
|
+
};
|
|
13
|
+
export declare const scanlines: (params?: (ScanlinesParams & {
|
|
14
|
+
readonly disabled?: boolean | undefined;
|
|
15
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type EffectDefinitionAndStack, type EffectDescriptor } from 'remotion';
|
|
2
|
+
export declare const testImage: ({ blob, testId, threshold, allowedMismatchedPixelRatio, }: {
|
|
3
|
+
blob: Blob;
|
|
4
|
+
testId: string;
|
|
5
|
+
threshold?: number | undefined;
|
|
6
|
+
allowedMismatchedPixelRatio?: number | undefined;
|
|
7
|
+
}) => Promise<void>;
|
|
8
|
+
export declare const descriptorsToMemoizedEffects: (effects: EffectDescriptor<unknown>[]) => EffectDefinitionAndStack<unknown>[];
|
|
9
|
+
export declare const renderEffectChainToBlob: ({ effects, width, height, }: {
|
|
10
|
+
effects: EffectDefinitionAndStack<unknown>[];
|
|
11
|
+
width?: number | undefined;
|
|
12
|
+
height?: number | undefined;
|
|
13
|
+
}) => Promise<Blob>;
|
package/dist/waves.d.ts
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
declare const WAVE_DIRECTIONS: readonly ["horizontal", "vertical"];
|
|
2
|
+
export declare const wavesSchema: {
|
|
3
|
+
readonly direction: {
|
|
4
|
+
readonly type: "enum";
|
|
5
|
+
readonly variants: {
|
|
6
|
+
readonly horizontal: {};
|
|
7
|
+
readonly vertical: {};
|
|
8
|
+
};
|
|
9
|
+
readonly default: "horizontal";
|
|
10
|
+
readonly description: "Direction";
|
|
11
|
+
};
|
|
12
|
+
readonly thickness: {
|
|
13
|
+
readonly type: "number";
|
|
14
|
+
readonly min: 0.1;
|
|
15
|
+
readonly max: 400;
|
|
16
|
+
readonly step: 0.1;
|
|
17
|
+
readonly default: 40;
|
|
18
|
+
readonly description: "Thickness";
|
|
19
|
+
};
|
|
20
|
+
readonly gap: {
|
|
21
|
+
readonly type: "number";
|
|
22
|
+
readonly min: 0;
|
|
23
|
+
readonly max: 400;
|
|
24
|
+
readonly step: 0.1;
|
|
25
|
+
readonly default: 0;
|
|
26
|
+
readonly description: "Gap";
|
|
27
|
+
};
|
|
28
|
+
readonly angle: {
|
|
29
|
+
readonly type: "number";
|
|
30
|
+
readonly min: -180;
|
|
31
|
+
readonly max: 180;
|
|
32
|
+
readonly step: 1;
|
|
33
|
+
readonly default: 0;
|
|
34
|
+
readonly description: "Angle";
|
|
35
|
+
};
|
|
36
|
+
readonly offset: {
|
|
37
|
+
readonly type: "number";
|
|
38
|
+
readonly step: 0.1;
|
|
39
|
+
readonly default: 0;
|
|
40
|
+
readonly description: "Offset";
|
|
41
|
+
};
|
|
42
|
+
readonly amplitude: {
|
|
43
|
+
readonly type: "number";
|
|
44
|
+
readonly min: 0;
|
|
45
|
+
readonly max: 500;
|
|
46
|
+
readonly step: 0.1;
|
|
47
|
+
readonly default: 24;
|
|
48
|
+
readonly description: "Amplitude";
|
|
49
|
+
};
|
|
50
|
+
readonly wavelength: {
|
|
51
|
+
readonly type: "number";
|
|
52
|
+
readonly min: 1;
|
|
53
|
+
readonly max: 2000;
|
|
54
|
+
readonly step: 1;
|
|
55
|
+
readonly default: 160;
|
|
56
|
+
readonly description: "Wavelength";
|
|
57
|
+
};
|
|
58
|
+
readonly phase: {
|
|
59
|
+
readonly type: "number";
|
|
60
|
+
readonly min: -360;
|
|
61
|
+
readonly max: 360;
|
|
62
|
+
readonly step: 1;
|
|
63
|
+
readonly default: 0;
|
|
64
|
+
readonly description: "Phase";
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
export type WavesDirection = (typeof WAVE_DIRECTIONS)[number];
|
|
68
|
+
export type WavesParams = {
|
|
69
|
+
/** Stripe colors, assigned cyclically. Defaults to light blue shades. */
|
|
70
|
+
readonly colors?: readonly string[];
|
|
71
|
+
/** Base band direction. Defaults to `horizontal`. */
|
|
72
|
+
readonly direction?: WavesDirection;
|
|
73
|
+
/** Thickness of each stripe in pixels. Defaults to `40`. */
|
|
74
|
+
readonly thickness?: number;
|
|
75
|
+
/** Transparent gap in pixels between each stripe. Defaults to `0`. */
|
|
76
|
+
readonly gap?: number;
|
|
77
|
+
/** Rotates the pattern in degrees. Defaults to `0`. */
|
|
78
|
+
readonly angle?: number;
|
|
79
|
+
/** Offset in pixels. Animate to scroll through the bands. Defaults to `0`. */
|
|
80
|
+
readonly offset?: number;
|
|
81
|
+
/** Wave displacement in pixels. Defaults to `24`. */
|
|
82
|
+
readonly amplitude?: number;
|
|
83
|
+
/** Distance in pixels before the wave repeats. Defaults to `160`. */
|
|
84
|
+
readonly wavelength?: number;
|
|
85
|
+
/** Wave phase in degrees. Defaults to `0`. */
|
|
86
|
+
readonly phase?: number;
|
|
87
|
+
};
|
|
88
|
+
export declare const waves: (params?: (WavesParams & {
|
|
89
|
+
readonly disabled?: boolean | undefined;
|
|
90
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
|
91
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type WhiteNoiseParams = {
|
|
2
|
+
/** Blend amount from `0` to `1`. Defaults to `1`. */
|
|
3
|
+
readonly amount?: number;
|
|
4
|
+
/** Seed for the random noise pattern. Defaults to `0`. */
|
|
5
|
+
readonly seed?: number;
|
|
6
|
+
};
|
|
7
|
+
export declare const whiteNoise: (params?: (WhiteNoiseParams & {
|
|
8
|
+
readonly disabled?: boolean | undefined;
|
|
9
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
package/dist/zigzag.d.ts
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
declare const ZIGZAG_DIRECTIONS: readonly ["horizontal", "vertical"];
|
|
2
|
+
export declare const zigzagSchema: {
|
|
3
|
+
readonly direction: {
|
|
4
|
+
readonly type: "enum";
|
|
5
|
+
readonly variants: {
|
|
6
|
+
readonly horizontal: {};
|
|
7
|
+
readonly vertical: {};
|
|
8
|
+
};
|
|
9
|
+
readonly default: "horizontal";
|
|
10
|
+
readonly description: "Direction";
|
|
11
|
+
};
|
|
12
|
+
readonly thickness: {
|
|
13
|
+
readonly type: "number";
|
|
14
|
+
readonly min: 0.1;
|
|
15
|
+
readonly max: 400;
|
|
16
|
+
readonly step: 0.1;
|
|
17
|
+
readonly default: 40;
|
|
18
|
+
readonly description: "Thickness";
|
|
19
|
+
};
|
|
20
|
+
readonly gap: {
|
|
21
|
+
readonly type: "number";
|
|
22
|
+
readonly min: 0;
|
|
23
|
+
readonly max: 400;
|
|
24
|
+
readonly step: 0.1;
|
|
25
|
+
readonly default: 0;
|
|
26
|
+
readonly description: "Gap";
|
|
27
|
+
};
|
|
28
|
+
readonly angle: {
|
|
29
|
+
readonly type: "number";
|
|
30
|
+
readonly min: -180;
|
|
31
|
+
readonly max: 180;
|
|
32
|
+
readonly step: 1;
|
|
33
|
+
readonly default: 0;
|
|
34
|
+
readonly description: "Angle";
|
|
35
|
+
};
|
|
36
|
+
readonly offset: {
|
|
37
|
+
readonly type: "number";
|
|
38
|
+
readonly step: 0.1;
|
|
39
|
+
readonly default: 0;
|
|
40
|
+
readonly description: "Offset";
|
|
41
|
+
};
|
|
42
|
+
readonly amplitude: {
|
|
43
|
+
readonly type: "number";
|
|
44
|
+
readonly min: 0;
|
|
45
|
+
readonly max: 500;
|
|
46
|
+
readonly step: 0.1;
|
|
47
|
+
readonly default: 40;
|
|
48
|
+
readonly description: "Amplitude";
|
|
49
|
+
};
|
|
50
|
+
readonly wavelength: {
|
|
51
|
+
readonly type: "number";
|
|
52
|
+
readonly min: 1;
|
|
53
|
+
readonly max: 2000;
|
|
54
|
+
readonly step: 1;
|
|
55
|
+
readonly default: 160;
|
|
56
|
+
readonly description: "Wavelength";
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
export type ZigzagDirection = (typeof ZIGZAG_DIRECTIONS)[number];
|
|
60
|
+
export type ZigzagParams = {
|
|
61
|
+
/** Stripe colors, assigned cyclically. Same semantics as lines(). */
|
|
62
|
+
readonly colors?: readonly string[];
|
|
63
|
+
/** Base band direction before zig-zag displacement. Same as lines(). */
|
|
64
|
+
readonly direction?: ZigzagDirection;
|
|
65
|
+
/** Thickness of each colored band in pixels. Same as lines(). */
|
|
66
|
+
readonly thickness?: number;
|
|
67
|
+
/** Transparent gap in pixels between bands. Same as lines(). */
|
|
68
|
+
readonly gap?: number;
|
|
69
|
+
/** Rotates the full pattern in degrees. Same as lines(). */
|
|
70
|
+
readonly angle?: number;
|
|
71
|
+
/** Offset in pixels. Animate to scroll the bands. Same as lines(). */
|
|
72
|
+
readonly offset?: number;
|
|
73
|
+
/** Zig-zag displacement in pixels. */
|
|
74
|
+
readonly amplitude?: number;
|
|
75
|
+
/** Distance in pixels before the zig-zag repeats. */
|
|
76
|
+
readonly wavelength?: number;
|
|
77
|
+
};
|
|
78
|
+
export declare const zigzag: (params?: (ZigzagParams & {
|
|
79
|
+
readonly disabled?: boolean | undefined;
|
|
80
|
+
}) | undefined) => import("remotion").EffectDescriptor<unknown>;
|
|
81
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/effects",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.471",
|
|
4
4
|
"description": "Effects that can be applied to Remotion-based canvas components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
"type": "module",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"test": "bun test src/test",
|
|
14
|
+
"testvisual": "vitest src/visual-test/effects-visual.test.ts",
|
|
15
|
+
"testeffectsvisual": "vitest src/visual-test/effects-visual.test.ts --browser --run",
|
|
14
16
|
"formatting": "oxfmt src --check",
|
|
15
17
|
"format": "oxfmt src",
|
|
16
18
|
"lint": "eslint src",
|
|
@@ -24,7 +26,7 @@
|
|
|
24
26
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
25
27
|
},
|
|
26
28
|
"dependencies": {
|
|
27
|
-
"remotion": "4.0.
|
|
29
|
+
"remotion": "4.0.471"
|
|
28
30
|
},
|
|
29
31
|
"exports": {
|
|
30
32
|
".": {
|
|
@@ -67,6 +69,16 @@
|
|
|
67
69
|
"module": "./dist/esm/duotone.mjs",
|
|
68
70
|
"import": "./dist/esm/duotone.mjs"
|
|
69
71
|
},
|
|
72
|
+
"./evolve": {
|
|
73
|
+
"types": "./dist/evolve.d.ts",
|
|
74
|
+
"module": "./dist/esm/evolve.mjs",
|
|
75
|
+
"import": "./dist/esm/evolve.mjs"
|
|
76
|
+
},
|
|
77
|
+
"./fisheye": {
|
|
78
|
+
"types": "./dist/fisheye.d.ts",
|
|
79
|
+
"module": "./dist/esm/fisheye.mjs",
|
|
80
|
+
"import": "./dist/esm/fisheye.mjs"
|
|
81
|
+
},
|
|
70
82
|
"./glow": {
|
|
71
83
|
"types": "./dist/glow.d.ts",
|
|
72
84
|
"module": "./dist/esm/glow.mjs",
|
|
@@ -82,6 +94,11 @@
|
|
|
82
94
|
"module": "./dist/esm/halftone-linear-gradient.mjs",
|
|
83
95
|
"import": "./dist/esm/halftone-linear-gradient.mjs"
|
|
84
96
|
},
|
|
97
|
+
"./pixel-dissolve": {
|
|
98
|
+
"types": "./dist/pixel-dissolve.d.ts",
|
|
99
|
+
"module": "./dist/esm/pixel-dissolve.mjs",
|
|
100
|
+
"import": "./dist/esm/pixel-dissolve.mjs"
|
|
101
|
+
},
|
|
85
102
|
"./grayscale": {
|
|
86
103
|
"types": "./dist/grayscale.d.ts",
|
|
87
104
|
"module": "./dist/esm/grayscale.mjs",
|
|
@@ -97,6 +114,11 @@
|
|
|
97
114
|
"module": "./dist/esm/invert.mjs",
|
|
98
115
|
"import": "./dist/esm/invert.mjs"
|
|
99
116
|
},
|
|
117
|
+
"./lines": {
|
|
118
|
+
"types": "./dist/lines.d.ts",
|
|
119
|
+
"module": "./dist/esm/lines.mjs",
|
|
120
|
+
"import": "./dist/esm/lines.mjs"
|
|
121
|
+
},
|
|
100
122
|
"./dot-grid": {
|
|
101
123
|
"types": "./dist/dot-grid.d.ts",
|
|
102
124
|
"module": "./dist/esm/dot-grid.mjs",
|
|
@@ -112,11 +134,21 @@
|
|
|
112
134
|
"module": "./dist/esm/noise.mjs",
|
|
113
135
|
"import": "./dist/esm/noise.mjs"
|
|
114
136
|
},
|
|
137
|
+
"./rings": {
|
|
138
|
+
"types": "./dist/rings.d.ts",
|
|
139
|
+
"module": "./dist/esm/rings.mjs",
|
|
140
|
+
"import": "./dist/esm/rings.mjs"
|
|
141
|
+
},
|
|
115
142
|
"./saturation": {
|
|
116
143
|
"types": "./dist/saturation.d.ts",
|
|
117
144
|
"module": "./dist/esm/saturation.mjs",
|
|
118
145
|
"import": "./dist/esm/saturation.mjs"
|
|
119
146
|
},
|
|
147
|
+
"./scanlines": {
|
|
148
|
+
"types": "./dist/scanlines.d.ts",
|
|
149
|
+
"module": "./dist/esm/scanlines.mjs",
|
|
150
|
+
"import": "./dist/esm/scanlines.mjs"
|
|
151
|
+
},
|
|
120
152
|
"./scale": {
|
|
121
153
|
"types": "./dist/scale.d.ts",
|
|
122
154
|
"module": "./dist/esm/scale.mjs",
|
|
@@ -152,6 +184,21 @@
|
|
|
152
184
|
"module": "./dist/esm/wave.mjs",
|
|
153
185
|
"import": "./dist/esm/wave.mjs"
|
|
154
186
|
},
|
|
187
|
+
"./waves": {
|
|
188
|
+
"types": "./dist/waves.d.ts",
|
|
189
|
+
"module": "./dist/esm/waves.mjs",
|
|
190
|
+
"import": "./dist/esm/waves.mjs"
|
|
191
|
+
},
|
|
192
|
+
"./white-noise": {
|
|
193
|
+
"types": "./dist/white-noise.d.ts",
|
|
194
|
+
"module": "./dist/esm/white-noise.mjs",
|
|
195
|
+
"import": "./dist/esm/white-noise.mjs"
|
|
196
|
+
},
|
|
197
|
+
"./zigzag": {
|
|
198
|
+
"types": "./dist/zigzag.d.ts",
|
|
199
|
+
"module": "./dist/esm/zigzag.mjs",
|
|
200
|
+
"import": "./dist/esm/zigzag.mjs"
|
|
201
|
+
},
|
|
155
202
|
"./package.json": "./package.json"
|
|
156
203
|
},
|
|
157
204
|
"typesVersions": {
|
|
@@ -177,6 +224,12 @@
|
|
|
177
224
|
"duotone": [
|
|
178
225
|
"dist/duotone.d.ts"
|
|
179
226
|
],
|
|
227
|
+
"evolve": [
|
|
228
|
+
"dist/evolve.d.ts"
|
|
229
|
+
],
|
|
230
|
+
"fisheye": [
|
|
231
|
+
"dist/fisheye.d.ts"
|
|
232
|
+
],
|
|
180
233
|
"glow": [
|
|
181
234
|
"dist/glow.d.ts"
|
|
182
235
|
],
|
|
@@ -186,6 +239,9 @@
|
|
|
186
239
|
"halftone-linear-gradient": [
|
|
187
240
|
"dist/halftone-linear-gradient.d.ts"
|
|
188
241
|
],
|
|
242
|
+
"pixel-dissolve": [
|
|
243
|
+
"dist/pixel-dissolve.d.ts"
|
|
244
|
+
],
|
|
189
245
|
"grayscale": [
|
|
190
246
|
"dist/grayscale.d.ts"
|
|
191
247
|
],
|
|
@@ -195,6 +251,9 @@
|
|
|
195
251
|
"invert": [
|
|
196
252
|
"dist/invert.d.ts"
|
|
197
253
|
],
|
|
254
|
+
"lines": [
|
|
255
|
+
"dist/lines.d.ts"
|
|
256
|
+
],
|
|
198
257
|
"dot-grid": [
|
|
199
258
|
"dist/dot-grid.d.ts"
|
|
200
259
|
],
|
|
@@ -204,9 +263,15 @@
|
|
|
204
263
|
"noise": [
|
|
205
264
|
"dist/noise.d.ts"
|
|
206
265
|
],
|
|
266
|
+
"rings": [
|
|
267
|
+
"dist/rings.d.ts"
|
|
268
|
+
],
|
|
207
269
|
"saturation": [
|
|
208
270
|
"dist/saturation.d.ts"
|
|
209
271
|
],
|
|
272
|
+
"scanlines": [
|
|
273
|
+
"dist/scanlines.d.ts"
|
|
274
|
+
],
|
|
210
275
|
"scale": [
|
|
211
276
|
"dist/scale.d.ts"
|
|
212
277
|
],
|
|
@@ -227,13 +292,24 @@
|
|
|
227
292
|
],
|
|
228
293
|
"wave": [
|
|
229
294
|
"dist/wave.d.ts"
|
|
295
|
+
],
|
|
296
|
+
"waves": [
|
|
297
|
+
"dist/waves.d.ts"
|
|
298
|
+
],
|
|
299
|
+
"zigzag": [
|
|
300
|
+
"dist/zigzag.d.ts"
|
|
301
|
+
],
|
|
302
|
+
"white-noise": [
|
|
303
|
+
"dist/white-noise.d.ts"
|
|
230
304
|
]
|
|
231
305
|
}
|
|
232
306
|
},
|
|
233
307
|
"homepage": "https://www.remotion.dev/docs/effects/api",
|
|
234
308
|
"devDependencies": {
|
|
235
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
309
|
+
"@remotion/eslint-config-internal": "4.0.471",
|
|
310
|
+
"@vitest/browser-playwright": "4.0.9",
|
|
236
311
|
"eslint": "9.19.0",
|
|
312
|
+
"vitest": "4.0.9",
|
|
237
313
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
238
314
|
},
|
|
239
315
|
"keywords": [
|