create-video 4.0.176 → 4.0.178
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/README.md +18 -0
- package/package.json +6 -8
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @remotion/create-video
|
|
2
|
+
|
|
3
|
+
Create a new Remotion project
|
|
4
|
+
|
|
5
|
+
[](https://npmcharts.com/compare/create-video?minimal=true)
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install create-video --save-exact
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
When installing a Remotion package, make sure to align the version of all `remotion` and `@remotion/*` packages to the same version.
|
|
14
|
+
Remove the `^` character from the version number to use the exact version.
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
See the [documentation](https://remotion.dev/templates) for more information.
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"repository": {
|
|
3
|
+
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/create-video"
|
|
4
|
+
},
|
|
2
5
|
"name": "create-video",
|
|
3
|
-
"version": "4.0.
|
|
4
|
-
"description": "",
|
|
6
|
+
"version": "4.0.178",
|
|
7
|
+
"description": "Create a new Remotion project",
|
|
5
8
|
"main": "dist/index.js",
|
|
6
9
|
"bin": {
|
|
7
10
|
"create-video": "bin.js"
|
|
@@ -20,17 +23,12 @@
|
|
|
20
23
|
"tar": "6.2.1"
|
|
21
24
|
},
|
|
22
25
|
"devDependencies": {
|
|
23
|
-
"@jonny/eslint-config": "3.0.281",
|
|
24
26
|
"@types/minimist": "1.2.2",
|
|
25
|
-
"@types/node": "18.14.6",
|
|
26
27
|
"@types/prompts": "^2.0.12",
|
|
27
|
-
"@types/react": "18.3.1",
|
|
28
28
|
"@types/tar": "6.1.1",
|
|
29
|
-
"eslint": "8.56.0",
|
|
30
|
-
"prettier": "3.2.5",
|
|
31
|
-
"prettier-plugin-organize-imports": "3.2.4",
|
|
32
29
|
"vitest": "0.31.1"
|
|
33
30
|
},
|
|
31
|
+
"homepage": "https://remotion.dev/templates",
|
|
34
32
|
"scripts": {
|
|
35
33
|
"formatting": "prettier src --check",
|
|
36
34
|
"lint": "eslint src --ext ts,tsx",
|