@remotion/effects 4.0.514 → 4.0.516
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/outline.mjs +703 -0
- package/dist/esm/page-turn.mjs +521 -0
- package/dist/outline/polygonize-alpha.d.ts +7 -0
- package/dist/outline.d.ts +54 -0
- package/dist/page-turn.d.ts +91 -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.516",
|
|
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.516"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
@@ -234,6 +234,11 @@
|
|
|
234
234
|
"module": "./dist/esm/noise-displacement.mjs",
|
|
235
235
|
"import": "./dist/esm/noise-displacement.mjs"
|
|
236
236
|
},
|
|
237
|
+
"./outline": {
|
|
238
|
+
"types": "./dist/outline.d.ts",
|
|
239
|
+
"module": "./dist/esm/outline.mjs",
|
|
240
|
+
"import": "./dist/esm/outline.mjs"
|
|
241
|
+
},
|
|
237
242
|
"./paper": {
|
|
238
243
|
"types": "./dist/paper.d.ts",
|
|
239
244
|
"module": "./dist/esm/paper.mjs",
|
|
@@ -508,6 +513,9 @@
|
|
|
508
513
|
"noise-displacement": [
|
|
509
514
|
"dist/noise-displacement.d.ts"
|
|
510
515
|
],
|
|
516
|
+
"outline": [
|
|
517
|
+
"dist/outline.d.ts"
|
|
518
|
+
],
|
|
511
519
|
"paper": [
|
|
512
520
|
"dist/paper.d.ts"
|
|
513
521
|
],
|
|
@@ -602,7 +610,7 @@
|
|
|
602
610
|
},
|
|
603
611
|
"homepage": "https://www.remotion.dev/docs/effects/api",
|
|
604
612
|
"devDependencies": {
|
|
605
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
613
|
+
"@remotion/eslint-config-internal": "4.0.516",
|
|
606
614
|
"@vitest/browser-playwright": "4.0.9",
|
|
607
615
|
"eslint": "9.19.0",
|
|
608
616
|
"vitest": "4.0.9",
|