@remotion/effects 4.0.465 → 4.0.467

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.
Files changed (42) hide show
  1. package/dist/barrel-distortion/barrel-distortion-runtime.d.ts +21 -0
  2. package/dist/barrel-distortion/barrel-distortion-shaders.d.ts +2 -0
  3. package/dist/barrel-distortion/index.d.ts +7 -0
  4. package/dist/barrel-distortion.d.ts +1 -0
  5. package/dist/brightness.d.ts +7 -0
  6. package/dist/chromatic-aberration/chromatic-aberration-runtime.d.ts +22 -0
  7. package/dist/chromatic-aberration/chromatic-aberration-shaders.d.ts +2 -0
  8. package/dist/chromatic-aberration/index.d.ts +9 -0
  9. package/dist/chromatic-aberration.d.ts +1 -0
  10. package/dist/color-utils.d.ts +37 -0
  11. package/dist/contrast.d.ts +7 -0
  12. package/dist/esm/barrel-distortion.mjs +329 -0
  13. package/dist/esm/blur.mjs +2 -1
  14. package/dist/esm/brightness.mjs +138 -0
  15. package/dist/esm/chromatic-aberration.mjs +330 -0
  16. package/dist/esm/contrast.mjs +138 -0
  17. package/dist/esm/grayscale.mjs +128 -0
  18. package/dist/esm/halftone.mjs +178 -25
  19. package/dist/esm/hue.mjs +126 -0
  20. package/dist/esm/index.mjs +0 -428
  21. package/dist/esm/invert.mjs +128 -0
  22. package/dist/esm/mirror.mjs +358 -0
  23. package/dist/esm/saturation.mjs +128 -0
  24. package/dist/esm/scale.mjs +103 -0
  25. package/dist/esm/tint.mjs +72 -14
  26. package/dist/esm/translate.mjs +205 -0
  27. package/dist/esm/wave.mjs +1 -0
  28. package/dist/grayscale.d.ts +7 -0
  29. package/dist/halftone.d.ts +39 -10
  30. package/dist/hue.d.ts +7 -0
  31. package/dist/index.d.ts +1 -3
  32. package/dist/invert.d.ts +7 -0
  33. package/dist/mirror/index.d.ts +13 -0
  34. package/dist/mirror/mirror-runtime.d.ts +26 -0
  35. package/dist/mirror/mirror-shaders.d.ts +2 -0
  36. package/dist/mirror.d.ts +1 -0
  37. package/dist/saturation.d.ts +7 -0
  38. package/dist/scale/index.d.ts +11 -0
  39. package/dist/scale.d.ts +1 -0
  40. package/dist/translate/index.d.ts +18 -0
  41. package/dist/translate.d.ts +1 -0
  42. package/package.json +107 -3
@@ -0,0 +1,205 @@
1
+ // src/translate/index.ts
2
+ import { Internals } from "remotion";
3
+
4
+ // src/validate-effect-param.ts
5
+ var assertEffectParamsObject = (params, effectLabel) => {
6
+ if (params === null || typeof params !== "object") {
7
+ throw new TypeError(`${effectLabel} effect requires a parameters object, but got ${JSON.stringify(params)}`);
8
+ }
9
+ };
10
+ var assertRequiredFiniteNumber = (value, name) => {
11
+ if (typeof value !== "number" || !Number.isFinite(value)) {
12
+ throw new TypeError(`"${name}" must be a finite number, but got ${JSON.stringify(value)}`);
13
+ }
14
+ };
15
+ var assertRequiredColor = (value, name) => {
16
+ if (typeof value !== "string" || value.length === 0) {
17
+ throw new TypeError(`"${name}" must be a non-empty string, but got ${JSON.stringify(value)}`);
18
+ }
19
+ };
20
+
21
+ // src/color-utils.ts
22
+ var DEFAULT_AMOUNT = 1;
23
+ var DEFAULT_BRIGHTNESS_AMOUNT = 0;
24
+ var DEFAULT_HUE_DEGREES = 0;
25
+ var colorAmountSchema = {
26
+ type: "number",
27
+ min: 0,
28
+ max: 1,
29
+ step: 0.01,
30
+ default: DEFAULT_AMOUNT,
31
+ description: "Amount"
32
+ };
33
+ var colorMultiplierSchema = {
34
+ type: "number",
35
+ min: 0,
36
+ step: 0.01,
37
+ default: DEFAULT_AMOUNT,
38
+ description: "Amount"
39
+ };
40
+ var brightnessAmountSchema = {
41
+ type: "number",
42
+ min: -1,
43
+ max: 1,
44
+ step: 0.01,
45
+ default: DEFAULT_BRIGHTNESS_AMOUNT,
46
+ description: "Amount"
47
+ };
48
+ var hueDegreesSchema = {
49
+ type: "number",
50
+ step: 1,
51
+ default: DEFAULT_HUE_DEGREES,
52
+ description: "Degrees"
53
+ };
54
+ var assertOptionalFiniteNumber = (value, name) => {
55
+ if (value === undefined) {
56
+ return;
57
+ }
58
+ assertRequiredFiniteNumber(value, name);
59
+ };
60
+ var validateUnitInterval = (value, name) => {
61
+ if (value < 0) {
62
+ throw new TypeError(`"${name}" must be >= 0, but got ${JSON.stringify(value)}`);
63
+ }
64
+ if (value > 1) {
65
+ throw new TypeError(`"${name}" must be <= 1, but got ${JSON.stringify(value)}`);
66
+ }
67
+ };
68
+ var validateNonNegative = (value, name) => {
69
+ if (value < 0) {
70
+ throw new TypeError(`"${name}" must be >= 0, but got ${JSON.stringify(value)}`);
71
+ }
72
+ };
73
+ var validateSignedUnitInterval = (value, name) => {
74
+ if (value < -1) {
75
+ throw new TypeError(`"${name}" must be >= -1, but got ${JSON.stringify(value)}`);
76
+ }
77
+ if (value > 1) {
78
+ throw new TypeError(`"${name}" must be <= 1, but got ${JSON.stringify(value)}`);
79
+ }
80
+ };
81
+ var clampColorChannel = (value) => {
82
+ return Math.max(0, Math.min(255, value));
83
+ };
84
+
85
+ // src/translate/index.ts
86
+ var { createEffect } = Internals;
87
+ var xyTranslateSchema = {
88
+ x: {
89
+ type: "number",
90
+ step: 1,
91
+ default: 0,
92
+ description: "X"
93
+ },
94
+ y: {
95
+ type: "number",
96
+ step: 1,
97
+ default: 0,
98
+ description: "Y"
99
+ }
100
+ };
101
+ var uvTranslateSchema = {
102
+ u: {
103
+ type: "number",
104
+ step: 0.01,
105
+ default: 0,
106
+ description: "U"
107
+ },
108
+ v: {
109
+ type: "number",
110
+ step: 0.01,
111
+ default: 0,
112
+ description: "V"
113
+ }
114
+ };
115
+ var resolveXyTranslate = (params) => ({
116
+ x: params.x ?? 0,
117
+ y: params.y ?? 0
118
+ });
119
+ var resolveUvTranslate = (params) => ({
120
+ u: params.u ?? 0,
121
+ v: params.v ?? 0
122
+ });
123
+ var validateXyTranslateParams = (params) => {
124
+ assertEffectParamsObject(params, "xyTranslate");
125
+ assertOptionalFiniteNumber(params.x, "x");
126
+ assertOptionalFiniteNumber(params.y, "y");
127
+ };
128
+ var validateUvTranslateParams = (params) => {
129
+ assertEffectParamsObject(params, "uvTranslate");
130
+ assertOptionalFiniteNumber(params.u, "u");
131
+ assertOptionalFiniteNumber(params.v, "v");
132
+ };
133
+ var applyTranslate = ({
134
+ source,
135
+ target,
136
+ width,
137
+ height,
138
+ x,
139
+ y
140
+ }) => {
141
+ const ctx = target.getContext("2d");
142
+ if (!ctx) {
143
+ throw new Error("Failed to acquire 2D context for translate effect. The canvas may have been assigned a different context type.");
144
+ }
145
+ ctx.clearRect(0, 0, width, height);
146
+ ctx.drawImage(source, x, y, width, height);
147
+ };
148
+ var xyTranslate = createEffect({
149
+ type: "remotion/xy-translate",
150
+ label: "XY Translate",
151
+ documentationLink: "https://www.remotion.dev/docs/effects/xy-translate",
152
+ backend: "2d",
153
+ calculateKey: (params) => {
154
+ const r = resolveXyTranslate(params);
155
+ return `xy-translate-${r.x}-${r.y}`;
156
+ },
157
+ setup: () => null,
158
+ apply: ({ source, target, width, height, params }) => {
159
+ const r = resolveXyTranslate(params);
160
+ applyTranslate({
161
+ source,
162
+ target,
163
+ width,
164
+ height,
165
+ x: r.x,
166
+ y: r.y
167
+ });
168
+ },
169
+ cleanup: () => {
170
+ return;
171
+ },
172
+ schema: xyTranslateSchema,
173
+ validateParams: validateXyTranslateParams
174
+ });
175
+ var uvTranslate = createEffect({
176
+ type: "remotion/uv-translate",
177
+ label: "UV Translate",
178
+ documentationLink: "https://www.remotion.dev/docs/effects/uv-translate",
179
+ backend: "2d",
180
+ calculateKey: (params) => {
181
+ const r = resolveUvTranslate(params);
182
+ return `uv-translate-${r.u}-${r.v}`;
183
+ },
184
+ setup: () => null,
185
+ apply: ({ source, target, width, height, params }) => {
186
+ const r = resolveUvTranslate(params);
187
+ applyTranslate({
188
+ source,
189
+ target,
190
+ width,
191
+ height,
192
+ x: r.u * width,
193
+ y: r.v * height
194
+ });
195
+ },
196
+ cleanup: () => {
197
+ return;
198
+ },
199
+ schema: uvTranslateSchema,
200
+ validateParams: validateUvTranslateParams
201
+ });
202
+ export {
203
+ xyTranslate,
204
+ uvTranslate
205
+ };
package/dist/esm/wave.mjs CHANGED
@@ -297,6 +297,7 @@ var validateWaveParams = (params) => {
297
297
  var wave = createEffect({
298
298
  type: "remotion/wave",
299
299
  label: "Wave",
300
+ documentationLink: "https://www.remotion.dev/docs/effects/wave",
300
301
  backend: "webgl2",
301
302
  calculateKey: (params) => {
302
303
  const r = resolve(params);
@@ -0,0 +1,7 @@
1
+ export type GrayscaleParams = {
2
+ /** Mix between original color and grayscale. Defaults to `1`. */
3
+ readonly amount?: number;
4
+ };
5
+ export declare const grayscale: (params?: (GrayscaleParams & {
6
+ readonly disabled?: boolean | undefined;
7
+ }) | undefined) => import("remotion").EffectDescriptor<unknown>;
@@ -1,3 +1,6 @@
1
+ declare const HALFTONE_SHAPES: readonly ["circle", "square", "line"];
2
+ declare const HALFTONE_SAMPLING: readonly ["bilinear", "nearest"];
3
+ declare const HALFTONE_COLOR_MODES: readonly ["solid", "source"];
1
4
  export declare const halftoneSchema: {
2
5
  readonly dotSize: {
3
6
  readonly type: "number";
@@ -45,10 +48,31 @@ export declare const halftoneSchema: {
45
48
  readonly default: "circle";
46
49
  readonly description: "Shape";
47
50
  };
51
+ readonly invert: {
52
+ readonly type: "boolean";
53
+ readonly default: false;
54
+ readonly description: "Invert";
55
+ };
56
+ readonly colorMode: {
57
+ readonly type: "enum";
58
+ readonly default: "solid";
59
+ readonly description: "Color mode";
60
+ readonly variants: {
61
+ readonly solid: {
62
+ readonly dotColor: {
63
+ readonly type: "color";
64
+ readonly default: "red";
65
+ readonly description: "Dot color";
66
+ };
67
+ };
68
+ readonly source: {};
69
+ };
70
+ };
48
71
  };
49
- export type HalftoneShape = 'circle' | 'square' | 'line';
50
- export type HalftoneSampling = 'bilinear' | 'nearest';
51
- export type HalftoneParams = {
72
+ export type HalftoneShape = (typeof HALFTONE_SHAPES)[number];
73
+ export type HalftoneSampling = (typeof HALFTONE_SAMPLING)[number];
74
+ export type HalftoneColorMode = (typeof HALFTONE_COLOR_MODES)[number];
75
+ type HalftoneCommonParams = {
52
76
  readonly shape?: HalftoneShape;
53
77
  readonly dotSize?: number;
54
78
  /**
@@ -60,16 +84,21 @@ export type HalftoneParams = {
60
84
  readonly offsetX?: number;
61
85
  readonly offsetY?: number;
62
86
  readonly sampling?: HalftoneSampling;
63
- /** Dot color. Defaults to black. */
64
- readonly color?: string;
65
87
  /**
66
- * When false (default), halftone follows luminance on opaque pixels (classic
67
- * halftone on your subject). When true, the same dot pattern fills transparent
68
- * and low-alpha areas instead—e.g. the canvas around a cut-out shape—while
69
- * leaving the opaque shape mostly free of those dots.
88
+ * When false (default), dark areas produce larger dots.
89
+ * When true, the pattern is inverted:
90
+ * bright and transparent areas produce larger dots instead.
70
91
  */
71
- readonly shadeOutside?: boolean;
92
+ readonly invert?: boolean;
72
93
  };
94
+ export type HalftoneParams = HalftoneCommonParams & ({
95
+ readonly colorMode?: 'solid';
96
+ /** Dot color. Defaults to red. */
97
+ readonly dotColor?: string;
98
+ } | {
99
+ readonly colorMode: 'source';
100
+ });
73
101
  export declare const halftone: (params?: (HalftoneParams & {
74
102
  readonly disabled?: boolean | undefined;
75
103
  }) | undefined) => import("remotion").EffectDescriptor<unknown>;
104
+ export {};
package/dist/hue.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ export type HueParams = {
2
+ /** Hue rotation in degrees. Defaults to `0`. */
3
+ readonly degrees?: number;
4
+ };
5
+ export declare const hue: (params?: (HueParams & {
6
+ readonly disabled?: boolean | undefined;
7
+ }) | undefined) => import("remotion").EffectDescriptor<unknown>;
package/dist/index.d.ts CHANGED
@@ -1,3 +1 @@
1
- export { EffectInternals } from './effect-internals.js';
2
- export { halftoneSchema, type HalftoneParams } from './halftone.js';
3
- export { tintSchema, type TintParams } from './tint.js';
1
+ export {};
@@ -0,0 +1,7 @@
1
+ export type InvertParams = {
2
+ /** Mix between original color and inverted color. Defaults to `1`. */
3
+ readonly amount?: number;
4
+ };
5
+ export declare const invert: (params?: (InvertParams & {
6
+ readonly disabled?: boolean | undefined;
7
+ }) | undefined) => import("remotion").EffectDescriptor<unknown>;
@@ -0,0 +1,13 @@
1
+ import { type MirrorDirection } from './mirror-runtime.js';
2
+ export type { MirrorDirection };
3
+ export type MirrorParams = {
4
+ /** Mirror direction. Defaults to `horizontal`. */
5
+ readonly direction?: MirrorDirection;
6
+ /** Mirror position in UV coordinates. Defaults to `0.5`. */
7
+ readonly position?: number;
8
+ /** Mirror the other side of the image. Defaults to `false`. */
9
+ readonly invert?: boolean;
10
+ };
11
+ export declare const mirror: (params?: (MirrorParams & {
12
+ readonly disabled?: boolean | undefined;
13
+ }) | undefined) => import("remotion").EffectDescriptor<unknown>;
@@ -0,0 +1,26 @@
1
+ export type MirrorDirection = 'horizontal' | 'vertical';
2
+ export type MirrorState = {
3
+ gl: WebGL2RenderingContext;
4
+ program: WebGLProgram;
5
+ vao: WebGLVertexArrayObject;
6
+ vbo: WebGLBuffer;
7
+ textureSource: WebGLTexture;
8
+ uniforms: {
9
+ uSource: WebGLUniformLocation | null;
10
+ uPosition: WebGLUniformLocation | null;
11
+ uDirection: WebGLUniformLocation | null;
12
+ uInvert: WebGLUniformLocation | null;
13
+ };
14
+ };
15
+ export declare const setupMirror: (target: HTMLCanvasElement) => MirrorState;
16
+ export declare const cleanupMirror: (state: MirrorState) => void;
17
+ export declare const applyMirror: ({ state, source, width, height, position, direction, invert, flipSourceY, }: {
18
+ readonly state: MirrorState;
19
+ readonly source: CanvasImageSource;
20
+ readonly width: number;
21
+ readonly height: number;
22
+ readonly position: number;
23
+ readonly direction: MirrorDirection;
24
+ readonly invert: boolean;
25
+ readonly flipSourceY: boolean;
26
+ }) => void;
@@ -0,0 +1,2 @@
1
+ export declare const MIRROR_VS = "#version 300 es\nlayout(location = 0) in vec2 aPos;\nlayout(location = 1) in vec2 aUv;\nout vec2 vUv;\nvoid main() {\n\tvUv = aUv;\n\tgl_Position = vec4(aPos, 0.0, 1.0);\n}\n";
2
+ export declare const MIRROR_FS = "#version 300 es\nprecision highp float;\nin vec2 vUv;\nout vec4 fragColor;\n\nuniform sampler2D uSource;\nuniform float uPosition;\nuniform int uDirection;\nuniform bool uInvert;\n\nvoid main() {\n\tvec2 srcUv = vUv;\n\tfloat coord = uDirection == 0 ? vUv.x : vUv.y;\n\tbool shouldMirror = uInvert ? coord < uPosition : coord > uPosition;\n\n\tif (shouldMirror) {\n\t\tfloat mirrored = 2.0 * uPosition - coord;\n\t\tif (uDirection == 0) {\n\t\t\tsrcUv.x = mirrored;\n\t\t} else {\n\t\t\tsrcUv.y = mirrored;\n\t\t}\n\t}\n\n\tfragColor = texture(uSource, clamp(srcUv, vec2(0.0), vec2(1.0)));\n}\n";
@@ -0,0 +1 @@
1
+ export { mirror, type MirrorDirection, type MirrorParams, } from './mirror/index.js';
@@ -0,0 +1,7 @@
1
+ export type SaturationParams = {
2
+ /** Saturation multiplier. `1` leaves colors unchanged, `0` makes them grayscale. Defaults to `1`. */
3
+ readonly amount?: number;
4
+ };
5
+ export declare const saturation: (params?: (SaturationParams & {
6
+ readonly disabled?: boolean | undefined;
7
+ }) | undefined) => import("remotion").EffectDescriptor<unknown>;
@@ -0,0 +1,11 @@
1
+ export type ScaleParams = {
2
+ /** Scale factor. Defaults to `1`. Must be greater than 0. */
3
+ readonly scale: number;
4
+ /** Whether to apply horizontal scaling. Defaults to `true`. */
5
+ readonly horizontal?: boolean;
6
+ /** Whether to apply vertical scaling. Defaults to `true`. */
7
+ readonly vertical?: boolean;
8
+ };
9
+ export declare const scale: (params: ScaleParams & {
10
+ readonly disabled?: boolean | undefined;
11
+ }) => import("remotion").EffectDescriptor<unknown>;
@@ -0,0 +1 @@
1
+ export { scale, type ScaleParams } from './scale/index.js';
@@ -0,0 +1,18 @@
1
+ export type XyTranslateParams = {
2
+ /** Horizontal offset in pixels. Defaults to `0`. */
3
+ readonly x?: number;
4
+ /** Vertical offset in pixels. Defaults to `0`. */
5
+ readonly y?: number;
6
+ };
7
+ export type UvTranslateParams = {
8
+ /** Horizontal offset in UV coordinates. `1` equals the full canvas width. Defaults to `0`. */
9
+ readonly u?: number;
10
+ /** Vertical offset in UV coordinates. `1` equals the full canvas height. Defaults to `0`. */
11
+ readonly v?: number;
12
+ };
13
+ export declare const xyTranslate: (params?: (XyTranslateParams & {
14
+ readonly disabled?: boolean | undefined;
15
+ }) | undefined) => import("remotion").EffectDescriptor<unknown>;
16
+ export declare const uvTranslate: (params?: (UvTranslateParams & {
17
+ readonly disabled?: boolean | undefined;
18
+ }) | undefined) => import("remotion").EffectDescriptor<unknown>;
@@ -0,0 +1 @@
1
+ export { uvTranslate, xyTranslate, type UvTranslateParams, type XyTranslateParams, } from './translate/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/effects",
3
- "version": "4.0.465",
3
+ "version": "4.0.467",
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",
@@ -24,7 +24,7 @@
24
24
  "url": "https://github.com/remotion-dev/remotion/issues"
25
25
  },
26
26
  "dependencies": {
27
- "remotion": "4.0.465"
27
+ "remotion": "4.0.467"
28
28
  },
29
29
  "exports": {
30
30
  ".": {
@@ -32,11 +32,76 @@
32
32
  "module": "./dist/esm/index.mjs",
33
33
  "import": "./dist/esm/index.mjs"
34
34
  },
35
+ "./barrel-distortion": {
36
+ "types": "./dist/barrel-distortion.d.ts",
37
+ "module": "./dist/esm/barrel-distortion.mjs",
38
+ "import": "./dist/esm/barrel-distortion.mjs"
39
+ },
35
40
  "./blur": {
36
41
  "types": "./dist/blur.d.ts",
37
42
  "module": "./dist/esm/blur.mjs",
38
43
  "import": "./dist/esm/blur.mjs"
39
44
  },
45
+ "./chromatic-aberration": {
46
+ "types": "./dist/chromatic-aberration.d.ts",
47
+ "module": "./dist/esm/chromatic-aberration.mjs",
48
+ "import": "./dist/esm/chromatic-aberration.mjs"
49
+ },
50
+ "./brightness": {
51
+ "types": "./dist/brightness.d.ts",
52
+ "module": "./dist/esm/brightness.mjs",
53
+ "import": "./dist/esm/brightness.mjs"
54
+ },
55
+ "./contrast": {
56
+ "types": "./dist/contrast.d.ts",
57
+ "module": "./dist/esm/contrast.mjs",
58
+ "import": "./dist/esm/contrast.mjs"
59
+ },
60
+ "./halftone": {
61
+ "types": "./dist/halftone.d.ts",
62
+ "module": "./dist/esm/halftone.mjs",
63
+ "import": "./dist/esm/halftone.mjs"
64
+ },
65
+ "./grayscale": {
66
+ "types": "./dist/grayscale.d.ts",
67
+ "module": "./dist/esm/grayscale.mjs",
68
+ "import": "./dist/esm/grayscale.mjs"
69
+ },
70
+ "./hue": {
71
+ "types": "./dist/hue.d.ts",
72
+ "module": "./dist/esm/hue.mjs",
73
+ "import": "./dist/esm/hue.mjs"
74
+ },
75
+ "./invert": {
76
+ "types": "./dist/invert.d.ts",
77
+ "module": "./dist/esm/invert.mjs",
78
+ "import": "./dist/esm/invert.mjs"
79
+ },
80
+ "./mirror": {
81
+ "types": "./dist/mirror.d.ts",
82
+ "module": "./dist/esm/mirror.mjs",
83
+ "import": "./dist/esm/mirror.mjs"
84
+ },
85
+ "./saturation": {
86
+ "types": "./dist/saturation.d.ts",
87
+ "module": "./dist/esm/saturation.mjs",
88
+ "import": "./dist/esm/saturation.mjs"
89
+ },
90
+ "./scale": {
91
+ "types": "./dist/scale.d.ts",
92
+ "module": "./dist/esm/scale.mjs",
93
+ "import": "./dist/esm/scale.mjs"
94
+ },
95
+ "./tint": {
96
+ "types": "./dist/tint.d.ts",
97
+ "module": "./dist/esm/tint.mjs",
98
+ "import": "./dist/esm/tint.mjs"
99
+ },
100
+ "./translate": {
101
+ "types": "./dist/translate.d.ts",
102
+ "module": "./dist/esm/translate.mjs",
103
+ "import": "./dist/esm/translate.mjs"
104
+ },
40
105
  "./wave": {
41
106
  "types": "./dist/wave.d.ts",
42
107
  "module": "./dist/esm/wave.mjs",
@@ -46,9 +111,48 @@
46
111
  },
47
112
  "typesVersions": {
48
113
  ">=1.0": {
114
+ "barrel-distortion": [
115
+ "dist/barrel-distortion.d.ts"
116
+ ],
49
117
  "blur": [
50
118
  "dist/blur.d.ts"
51
119
  ],
120
+ "chromatic-aberration": [
121
+ "dist/chromatic-aberration.d.ts"
122
+ ],
123
+ "brightness": [
124
+ "dist/brightness.d.ts"
125
+ ],
126
+ "contrast": [
127
+ "dist/contrast.d.ts"
128
+ ],
129
+ "halftone": [
130
+ "dist/halftone.d.ts"
131
+ ],
132
+ "grayscale": [
133
+ "dist/grayscale.d.ts"
134
+ ],
135
+ "hue": [
136
+ "dist/hue.d.ts"
137
+ ],
138
+ "invert": [
139
+ "dist/invert.d.ts"
140
+ ],
141
+ "mirror": [
142
+ "dist/mirror.d.ts"
143
+ ],
144
+ "saturation": [
145
+ "dist/saturation.d.ts"
146
+ ],
147
+ "scale": [
148
+ "dist/scale.d.ts"
149
+ ],
150
+ "tint": [
151
+ "dist/tint.d.ts"
152
+ ],
153
+ "translate": [
154
+ "dist/translate.d.ts"
155
+ ],
52
156
  "wave": [
53
157
  "dist/wave.d.ts"
54
158
  ]
@@ -56,7 +160,7 @@
56
160
  },
57
161
  "homepage": "https://www.remotion.dev/docs/effects/api",
58
162
  "devDependencies": {
59
- "@remotion/eslint-config-internal": "4.0.465",
163
+ "@remotion/eslint-config-internal": "4.0.467",
60
164
  "eslint": "9.19.0",
61
165
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
62
166
  },