@remotion/effects 4.0.476 → 4.0.477
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/effect-internals.d.ts +8 -0
- package/dist/entrypoints/blur.d.ts +6 -0
- package/dist/esm/fisheye.mjs +9 -2
- package/dist/esm/index.mjs +527 -51
- package/dist/esm/pattern.mjs +575 -0
- package/dist/esm/rings.mjs +9 -2
- package/dist/esm/vignette.mjs +9 -2
- package/dist/index.d.ts +1 -0
- package/dist/pattern.d.ts +33 -0
- package/dist/uv-coordinate.d.ts +2 -0
- package/package.json +11 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/effects",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.477",
|
|
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",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"remotion": "4.0.
|
|
29
|
+
"remotion": "4.0.477"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
@@ -149,6 +149,11 @@
|
|
|
149
149
|
"module": "./dist/esm/noise-displacement.mjs",
|
|
150
150
|
"import": "./dist/esm/noise-displacement.mjs"
|
|
151
151
|
},
|
|
152
|
+
"./pattern": {
|
|
153
|
+
"types": "./dist/pattern.d.ts",
|
|
154
|
+
"module": "./dist/esm/pattern.mjs",
|
|
155
|
+
"import": "./dist/esm/pattern.mjs"
|
|
156
|
+
},
|
|
152
157
|
"./rings": {
|
|
153
158
|
"types": "./dist/rings.d.ts",
|
|
154
159
|
"module": "./dist/esm/rings.mjs",
|
|
@@ -292,6 +297,9 @@
|
|
|
292
297
|
"noise-displacement": [
|
|
293
298
|
"dist/noise-displacement.d.ts"
|
|
294
299
|
],
|
|
300
|
+
"pattern": [
|
|
301
|
+
"dist/pattern.d.ts"
|
|
302
|
+
],
|
|
295
303
|
"rings": [
|
|
296
304
|
"dist/rings.d.ts"
|
|
297
305
|
],
|
|
@@ -338,7 +346,7 @@
|
|
|
338
346
|
},
|
|
339
347
|
"homepage": "https://www.remotion.dev/docs/effects/api",
|
|
340
348
|
"devDependencies": {
|
|
341
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
349
|
+
"@remotion/eslint-config-internal": "4.0.477",
|
|
342
350
|
"@vitest/browser-playwright": "4.0.9",
|
|
343
351
|
"eslint": "9.19.0",
|
|
344
352
|
"vitest": "4.0.9",
|