@remotion/gif 3.0.0-processing.8 → 3.0.0-rc.7
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 +2 -2
- package/README.md +58 -0
- package/dist/Gif.d.ts +0 -1
- package/dist/Gif.d.ts.map +1 -1
- package/dist/Gif.js +2 -2
- package/dist/Gif.js.map +1 -1
- package/dist/GifForDevelopment.d.ts +0 -0
- package/dist/GifForDevelopment.d.ts.map +0 -0
- package/dist/GifForDevelopment.js +1 -1
- package/dist/GifForDevelopment.js.map +1 -1
- package/dist/GifForRendering.d.ts +0 -0
- package/dist/GifForRendering.d.ts.map +1 -1
- package/dist/GifForRendering.js +2 -2
- package/dist/GifForRendering.js.map +1 -1
- package/dist/index.d.ts +0 -0
- package/dist/index.d.ts.map +0 -0
- package/dist/index.js +0 -0
- package/dist/index.js.map +0 -0
- package/dist/props.d.ts +0 -0
- package/dist/props.d.ts.map +0 -0
- package/dist/props.js +0 -0
- package/dist/props.js.map +0 -0
- package/dist/useCurrentGifIndex.d.ts +0 -0
- package/dist/useCurrentGifIndex.d.ts.map +0 -0
- package/dist/useCurrentGifIndex.js +0 -0
- package/dist/useCurrentGifIndex.js.map +0 -0
- package/package.json +27 -16
package/LICENSE.md
CHANGED
|
@@ -7,7 +7,7 @@ Depending on the type of your legal entity, you are granted permission to use Re
|
|
|
7
7
|
|
|
8
8
|
## Free license
|
|
9
9
|
|
|
10
|
-
Copyright ©
|
|
10
|
+
Copyright © 2022 [Jonny Burger](https://jonny.io)
|
|
11
11
|
|
|
12
12
|
### Eligibility
|
|
13
13
|
|
|
@@ -32,7 +32,7 @@ The software is provided "as is", without warranty of any kind, express or impli
|
|
|
32
32
|
|
|
33
33
|
### Support
|
|
34
34
|
|
|
35
|
-
Support is provided on a best-we-can-do basis via GitHub Issues.
|
|
35
|
+
Support is provided on a best-we-can-do basis via GitHub Issues and Discord.
|
|
36
36
|
|
|
37
37
|
## Company license
|
|
38
38
|
|
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
### Remotion GIF
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.org/package/@remotion/player)
|
|
4
|
+
[](https://npmcharts.com/compare/@remotion/player?minimal=true)
|
|
5
|
+
[](https://packagephobia.now.sh/result?p=@remotion/player)
|
|
6
|
+
|
|
7
|
+
The Remotion GIF package allows you to embed GIFs into a [Remotion](https://remotion.dev) composition that synchronizes with Remotion's `useCurrentFrame()`'s hook.
|
|
8
|
+
|
|
9
|
+
To use this package, we'll be assuming [you already have a Remotion project](https://remotion.dev/docs).
|
|
10
|
+
|
|
11
|
+
Use the same package manager to install this package that you have used to initialize your Remotion project:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm i @remotion/gif
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
yarn add @remotion/gif
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pnpm i @remotion/gif
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
> Make sure all Remotion packages you install (`remotion`, `@remotion/player`, `@remotion/gif`...) [have the same version](https://remotion.dev/docs/version-mismatch).
|
|
26
|
+
|
|
27
|
+
### Basic Example
|
|
28
|
+
|
|
29
|
+
This will render a GIF that fills the whole size of the composition:
|
|
30
|
+
|
|
31
|
+
```javascript
|
|
32
|
+
import { useVideoConfig } from "remotion";
|
|
33
|
+
import { Gif } from "@remotion/gif";
|
|
34
|
+
|
|
35
|
+
export const MyComponent = () => {
|
|
36
|
+
const { width, height } = useVideoConfig();
|
|
37
|
+
|
|
38
|
+
return (
|
|
39
|
+
<Gif
|
|
40
|
+
src="https://media.giphy.com/media/3o72F7YT6s0EMFI0Za/giphy.gif"
|
|
41
|
+
width={width}
|
|
42
|
+
height={height}
|
|
43
|
+
fit="fill"
|
|
44
|
+
/>
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### API
|
|
50
|
+
|
|
51
|
+
Prop | Function |
|
|
52
|
+
--- | --- |
|
|
53
|
+
src | is a required prop, and it is the source of the GIF. It can be a URL or a local image - [See how you can import assets](https://www.remotion.dev/docs/assets).|
|
|
54
|
+
width | The display width of the GIF
|
|
55
|
+
height | The display height of the GIF
|
|
56
|
+
fill | The layout of the GIF in its current container. It accepts the following values: `fill`, `contain`, and `cover`
|
|
57
|
+
|
|
58
|
+
For a complete reference of the available props, refer to [the @remotion/gif documentation](https://www.remotion.dev/docs/gif).
|
package/dist/Gif.d.ts
CHANGED
package/dist/Gif.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Gif.d.ts","sourceRoot":"","sources":["../src/Gif.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Gif.d.ts","sourceRoot":"","sources":["../src/Gif.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAC,gBAAgB,EAAC,MAAM,SAAS,CAAC;AAEzC,eAAO,MAAM,GAAG,UAAW,gBAAgB,gBAM1C,CAAC"}
|
package/dist/Gif.js
CHANGED
|
@@ -7,9 +7,9 @@ const GifForDevelopment_1 = require("./GifForDevelopment");
|
|
|
7
7
|
const GifForRendering_1 = require("./GifForRendering");
|
|
8
8
|
const Gif = (props) => {
|
|
9
9
|
if (remotion_1.Internals.getRemotionEnvironment() === 'rendering') {
|
|
10
|
-
return (0, jsx_runtime_1.jsx)(GifForRendering_1.GifForRendering,
|
|
10
|
+
return (0, jsx_runtime_1.jsx)(GifForRendering_1.GifForRendering, { ...props }, void 0);
|
|
11
11
|
}
|
|
12
|
-
return (0, jsx_runtime_1.jsx)(GifForDevelopment_1.GifForDevelopment,
|
|
12
|
+
return (0, jsx_runtime_1.jsx)(GifForDevelopment_1.GifForDevelopment, { ...props }, void 0);
|
|
13
13
|
};
|
|
14
14
|
exports.Gif = Gif;
|
|
15
15
|
//# sourceMappingURL=Gif.js.map
|
package/dist/Gif.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Gif.js","sourceRoot":"","sources":["../src/Gif.tsx"],"names":[],"mappings":";;;;AACA,uCAAmC;AACnC,2DAAsD;AACtD,uDAAkD;AAG3C,MAAM,GAAG,GAAG,CAAC,KAAuB,EAAE,EAAE;IAC9C,IAAI,oBAAS,CAAC,sBAAsB,EAAE,KAAK,WAAW,EAAE;QACvD,OAAO,uBAAC,iCAAe,
|
|
1
|
+
{"version":3,"file":"Gif.js","sourceRoot":"","sources":["../src/Gif.tsx"],"names":[],"mappings":";;;;AACA,uCAAmC;AACnC,2DAAsD;AACtD,uDAAkD;AAG3C,MAAM,GAAG,GAAG,CAAC,KAAuB,EAAE,EAAE;IAC9C,IAAI,oBAAS,CAAC,sBAAsB,EAAE,KAAK,WAAW,EAAE;QACvD,OAAO,uBAAC,iCAAe,OAAK,KAAK,WAAI,CAAC;KACtC;IAED,OAAO,uBAAC,qCAAiB,OAAK,KAAK,WAAI,CAAC;AACzC,CAAC,CAAC;AANW,QAAA,GAAG,OAMd"}
|
|
File without changes
|
|
File without changes
|
|
@@ -37,6 +37,6 @@ exports.GifForDevelopment = (0, react_1.forwardRef)(({ src, width, height, onErr
|
|
|
37
37
|
}
|
|
38
38
|
});
|
|
39
39
|
const index = (0, useCurrentGifIndex_1.useCurrentGifIndex)(state.delays);
|
|
40
|
-
return ((0, jsx_runtime_1.jsx)(tools_1.Canvas,
|
|
40
|
+
return ((0, jsx_runtime_1.jsx)(tools_1.Canvas, { fit: fit, index: index, frames: state.frames, width: width !== null && width !== void 0 ? width : state.width, height: height !== null && height !== void 0 ? height : state.height, ...props, ref: ref }, void 0));
|
|
41
41
|
});
|
|
42
42
|
//# sourceMappingURL=GifForDevelopment.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GifForDevelopment.js","sourceRoot":"","sources":["../src/GifForDevelopment.tsx"],"names":[],"mappings":";;;;AAAA,6CAA0D;AAC1D,qCAA+B;AAC/B,iCAAkD;AAElD,6DAAwD;AAExD,MAAM,KAAK,GAAG,IAAI,gBAAM,CAAmB,EAAE,CAAC,CAAC;AAElC,QAAA,iBAAiB,GAAG,IAAA,kBAAU,EAGzC,CAAC,EAAC,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,GAAG,MAAM,EAAE,GAAG,KAAK,EAAC,EAAE,GAAG,EAAE,EAAE;IACxE,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,GAAG,IAAA,gBAAQ,EAAW,GAAG,EAAE;QAC/C,MAAM,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAEjC,IAAI,SAAS,KAAK,SAAS,EAAE;YAC5B,OAAO;gBACN,MAAM,EAAE,EAAE;gBACV,MAAM,EAAE,EAAE;gBACV,KAAK,EAAE,CAAC;gBACR,MAAM,EAAE,CAAC;aACT,CAAC;SACF;QAED,OAAO,SAAqB,CAAC;IAC9B,CAAC,CAAC,CAAC;IAEH,+BAA+B;IAC/B,IAAA,uBAAe,EAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,GAAG,EAAE,CAAC,IAAI,EAAE,EAAE;QAC7D,IAAI,OAAO,IAAI,IAAI,EAAE;YACpB,IAAI,OAAO,EAAE;gBACZ,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;aACpB;iBAAM;gBACN,OAAO,CAAC,KAAK,CACZ,oBAAoB,EACpB,IAAI,CAAC,KAAK,EACV,2EAA2E,CAC3E,CAAC;aACF;SACD;aAAM;YACN,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAG,IAAI,CAAC,CAAC;YAEf,KAAK,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;YACrB,MAAM,CAAC,IAAI,CAAC,CAAC;SACb;IACF,CAAC,CAAC,CAAC;IAEH,MAAM,KAAK,GAAG,IAAA,uCAAkB,EAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAE/C,OAAO,CACN,uBAAC,cAAM,
|
|
1
|
+
{"version":3,"file":"GifForDevelopment.js","sourceRoot":"","sources":["../src/GifForDevelopment.tsx"],"names":[],"mappings":";;;;AAAA,6CAA0D;AAC1D,qCAA+B;AAC/B,iCAAkD;AAElD,6DAAwD;AAExD,MAAM,KAAK,GAAG,IAAI,gBAAM,CAAmB,EAAE,CAAC,CAAC;AAElC,QAAA,iBAAiB,GAAG,IAAA,kBAAU,EAGzC,CAAC,EAAC,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,GAAG,MAAM,EAAE,GAAG,KAAK,EAAC,EAAE,GAAG,EAAE,EAAE;IACxE,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,GAAG,IAAA,gBAAQ,EAAW,GAAG,EAAE;QAC/C,MAAM,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAEjC,IAAI,SAAS,KAAK,SAAS,EAAE;YAC5B,OAAO;gBACN,MAAM,EAAE,EAAE;gBACV,MAAM,EAAE,EAAE;gBACV,KAAK,EAAE,CAAC;gBACR,MAAM,EAAE,CAAC;aACT,CAAC;SACF;QAED,OAAO,SAAqB,CAAC;IAC9B,CAAC,CAAC,CAAC;IAEH,+BAA+B;IAC/B,IAAA,uBAAe,EAAC,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,GAAG,EAAE,CAAC,IAAI,EAAE,EAAE;QAC7D,IAAI,OAAO,IAAI,IAAI,EAAE;YACpB,IAAI,OAAO,EAAE;gBACZ,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;aACpB;iBAAM;gBACN,OAAO,CAAC,KAAK,CACZ,oBAAoB,EACpB,IAAI,CAAC,KAAK,EACV,2EAA2E,CAC3E,CAAC;aACF;SACD;aAAM;YACN,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAG,IAAI,CAAC,CAAC;YAEf,KAAK,CAAC,GAAG,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;YACrB,MAAM,CAAC,IAAI,CAAC,CAAC;SACb;IACF,CAAC,CAAC,CAAC;IAEH,MAAM,KAAK,GAAG,IAAA,uCAAkB,EAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAE/C,OAAO,CACN,uBAAC,cAAM,IACN,GAAG,EAAE,GAAG,EACR,KAAK,EAAE,KAAK,EACZ,MAAM,EAAE,KAAK,CAAC,MAAM,EACpB,KAAK,EAAE,KAAK,aAAL,KAAK,cAAL,KAAK,GAAI,KAAK,CAAC,KAAK,EAC3B,MAAM,EAAE,MAAM,aAAN,MAAM,cAAN,MAAM,GAAI,KAAK,CAAC,MAAM,KAC1B,KAAK,EACT,GAAG,EAAE,GAAG,WACP,CACF,CAAC;AACH,CAAC,CAAC,CAAC"}
|
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GifForRendering.d.ts","sourceRoot":"","sources":["../src/GifForRendering.tsx"],"names":[],"mappings":"AACA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAElD,OAAO,EAAW,gBAAgB,EAAC,MAAM,SAAS,CAAC;AAGnD,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"GifForRendering.d.ts","sourceRoot":"","sources":["../src/GifForRendering.tsx"],"names":[],"mappings":"AACA,OAAO,KAA6B,MAAM,OAAO,CAAC;AAElD,OAAO,EAAW,gBAAgB,EAAC,MAAM,SAAS,CAAC;AAGnD,eAAO,MAAM,eAAe,4FA8C3B,CAAC"}
|
package/dist/GifForRendering.js
CHANGED
|
@@ -13,7 +13,7 @@ exports.GifForRendering = (0, react_1.forwardRef)(({ src, width, height, onLoad,
|
|
|
13
13
|
width: 0,
|
|
14
14
|
height: 0,
|
|
15
15
|
});
|
|
16
|
-
const [id] = (0, react_1.useState)(() => (0, remotion_1.delayRender)());
|
|
16
|
+
const [id] = (0, react_1.useState)(() => (0, remotion_1.delayRender)(`Rendering <Gif/> with src="${src}"`));
|
|
17
17
|
const index = (0, useCurrentGifIndex_1.useCurrentGifIndex)(state.delays);
|
|
18
18
|
(0, tools_1.useParser)(src, (info) => {
|
|
19
19
|
if ('error' in info) {
|
|
@@ -30,6 +30,6 @@ exports.GifForRendering = (0, react_1.forwardRef)(({ src, width, height, onLoad,
|
|
|
30
30
|
}
|
|
31
31
|
(0, remotion_1.continueRender)(id);
|
|
32
32
|
});
|
|
33
|
-
return ((0, jsx_runtime_1.jsx)(tools_1.Canvas,
|
|
33
|
+
return ((0, jsx_runtime_1.jsx)(tools_1.Canvas, { fit: fit, index: index, frames: state.frames, width: width !== null && width !== void 0 ? width : state.width, height: height !== null && height !== void 0 ? height : state.height, ...props, ref: ref }, void 0));
|
|
34
34
|
});
|
|
35
35
|
//# sourceMappingURL=GifForRendering.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GifForRendering.js","sourceRoot":"","sources":["../src/GifForRendering.tsx"],"names":[],"mappings":";;;;AAAA,6CAAoD;AACpD,iCAAkD;AAClD,uCAAqD;AAErD,6DAAwD;AAE3C,QAAA,eAAe,GAAG,IAAA,kBAAU,EACxC,CAAC,EAAC,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,GAAG,MAAM,EAAE,GAAG,KAAK,EAAC,EAAE,GAAG,EAAE,EAAE;IACtE,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,GAAG,IAAA,gBAAQ,EAAW;QAC1C,MAAM,EAAE,EAAE;QACV,MAAM,EAAE,EAAE;QACV,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,CAAC;KACT,CAAC,CAAC;IAEH,MAAM,CAAC,EAAE,CAAC,GAAG,IAAA,gBAAQ,EAAC,GAAG,EAAE,
|
|
1
|
+
{"version":3,"file":"GifForRendering.js","sourceRoot":"","sources":["../src/GifForRendering.tsx"],"names":[],"mappings":";;;;AAAA,6CAAoD;AACpD,iCAAkD;AAClD,uCAAqD;AAErD,6DAAwD;AAE3C,QAAA,eAAe,GAAG,IAAA,kBAAU,EACxC,CAAC,EAAC,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,GAAG,MAAM,EAAE,GAAG,KAAK,EAAC,EAAE,GAAG,EAAE,EAAE;IACtE,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,GAAG,IAAA,gBAAQ,EAAW;QAC1C,MAAM,EAAE,EAAE;QACV,MAAM,EAAE,EAAE;QACV,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,CAAC;KACT,CAAC,CAAC;IAEH,MAAM,CAAC,EAAE,CAAC,GAAG,IAAA,gBAAQ,EAAC,GAAG,EAAE,CAC1B,IAAA,sBAAW,EAAC,8BAA8B,GAAG,GAAG,CAAC,CACjD,CAAC;IAEF,MAAM,KAAK,GAAG,IAAA,uCAAkB,EAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAE/C,IAAA,iBAAS,EAAC,GAAG,EAAE,CAAC,IAAI,EAAE,EAAE;QACvB,IAAI,OAAO,IAAI,IAAI,EAAE;YACpB,IAAI,OAAO,EAAE;gBACZ,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;aACpB;iBAAM;gBACN,OAAO,CAAC,KAAK,CACZ,oBAAoB,EACpB,IAAI,CAAC,KAAK,EACV,2EAA2E,CAC3E,CAAC;aACF;SACD;aAAM;YACN,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAG,IAAI,CAAC,CAAC;YACf,MAAM,CAAC,IAAI,CAAC,CAAC;SACb;QAED,IAAA,yBAAc,EAAC,EAAE,CAAC,CAAC;IACpB,CAAC,CAAC,CAAC;IAEH,OAAO,CACN,uBAAC,cAAM,IACN,GAAG,EAAE,GAAG,EACR,KAAK,EAAE,KAAK,EACZ,MAAM,EAAE,KAAK,CAAC,MAAM,EACpB,KAAK,EAAE,KAAK,aAAL,KAAK,cAAL,KAAK,GAAI,KAAK,CAAC,KAAK,EAC3B,MAAM,EAAE,MAAM,aAAN,MAAM,cAAN,MAAM,GAAI,KAAK,CAAC,MAAM,KAC1B,KAAK,EACT,GAAG,EAAE,GAAG,WACP,CACF,CAAC;AACH,CAAC,CACD,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
File without changes
|
package/dist/index.d.ts.map
CHANGED
|
File without changes
|
package/dist/index.js
CHANGED
|
File without changes
|
package/dist/index.js.map
CHANGED
|
File without changes
|
package/dist/props.d.ts
CHANGED
|
File without changes
|
package/dist/props.d.ts.map
CHANGED
|
File without changes
|
package/dist/props.js
CHANGED
|
File without changes
|
package/dist/props.js.map
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/gif",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-rc.7+fdd22981c",
|
|
4
4
|
"description": "Gif component for remotion",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"repository": {
|
|
7
7
|
"url": "https://github.com/remotion-dev/remotion"
|
|
8
8
|
},
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
11
|
+
},
|
|
9
12
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
10
13
|
"author": "",
|
|
11
14
|
"main": "dist/index.js",
|
|
@@ -13,35 +16,43 @@
|
|
|
13
16
|
"dist"
|
|
14
17
|
],
|
|
15
18
|
"scripts": {
|
|
16
|
-
"
|
|
19
|
+
"lint": "eslint src --ext ts,tsx",
|
|
17
20
|
"build": "tsc -d",
|
|
18
21
|
"watch": "tsc -w"
|
|
19
22
|
},
|
|
20
23
|
"dependencies": {
|
|
21
|
-
"@react-gifs/tools": "
|
|
22
|
-
"lru_map": "
|
|
23
|
-
"remotion": "3.0.0-
|
|
24
|
+
"@react-gifs/tools": "0.1.2",
|
|
25
|
+
"lru_map": "0.4.1",
|
|
26
|
+
"remotion": "3.0.0-rc.7+fdd22981c"
|
|
24
27
|
},
|
|
25
28
|
"devDependencies": {
|
|
26
|
-
"@jonny/eslint-config": "
|
|
27
|
-
"@testing-library/react": "^11.2.2",
|
|
28
|
-
"@types/jest": "^27.0.2",
|
|
29
|
+
"@jonny/eslint-config": "3.0.259",
|
|
29
30
|
"@types/node": "^16.7.5",
|
|
30
|
-
"@types/react": "
|
|
31
|
-
"@types/react-dom": "
|
|
32
|
-
"eslint": "
|
|
31
|
+
"@types/react": "18.0.1",
|
|
32
|
+
"@types/react-dom": "18.0.0",
|
|
33
|
+
"eslint": "8.13.0",
|
|
33
34
|
"jest": "^27.2.4",
|
|
35
|
+
"prettier": "2.6.2",
|
|
34
36
|
"prettier-plugin-organize-imports": "^1.1.1",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
+
"react": "18.0.0",
|
|
38
|
+
"react-dom": "18.0.0",
|
|
39
|
+
"typescript": "^4.5.5",
|
|
37
40
|
"webpack": "5.60.0"
|
|
38
41
|
},
|
|
39
42
|
"peerDependencies": {
|
|
40
|
-
"react": "
|
|
41
|
-
"react-dom": "
|
|
43
|
+
"react": ">=16.8.0",
|
|
44
|
+
"react-dom": ">=16.8.0"
|
|
42
45
|
},
|
|
46
|
+
"keywords": [
|
|
47
|
+
"remotion",
|
|
48
|
+
"ffmpeg",
|
|
49
|
+
"video",
|
|
50
|
+
"react",
|
|
51
|
+
"puppeteer",
|
|
52
|
+
"player"
|
|
53
|
+
],
|
|
43
54
|
"publishConfig": {
|
|
44
55
|
"access": "public"
|
|
45
56
|
},
|
|
46
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "fdd22981cb15bf2a5bdb367c5c30b4bf770fc907"
|
|
47
58
|
}
|