@junwan666/remotion-cli 4.0.448-zh.0

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 ADDED
@@ -0,0 +1,18 @@
1
+ # @remotion/cli
2
+
3
+ Control Remotion features using the `npx remotion` command
4
+
5
+ [![NPM Downloads](https://img.shields.io/npm/dm/@remotion/cli.svg?style=flat&color=black&label=Downloads)](https://npmcharts.com/compare/@remotion/cli?minimal=true)
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @remotion/cli --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://www.remotion.dev/docs/cli) for more information.
package/package.json ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "repository": {
3
+ "url": "https://github.com/JunWan666/remotion-zh/tree/main/packages/cli"
4
+ },
5
+ "name": "@junwan666/remotion-cli",
6
+ "version": "4.0.448-zh.0",
7
+ "description": "Control Remotion features using the `npx remotion` command",
8
+ "main": "dist/index.js",
9
+ "sideEffects": false,
10
+ "bin": {
11
+ "remotion": "remotion-cli.js",
12
+ "remotionb": "remotionb-cli.js",
13
+ "remotiond": "remotiond-cli.js"
14
+ },
15
+ "scripts": {
16
+ "formatting": "oxfmt src --check",
17
+ "format": "oxfmt src",
18
+ "lint": "eslint src",
19
+ "test": "bun test src",
20
+ "make": "tsgo -d"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/remotion-dev/remotion/issues"
24
+ },
25
+ "exports": {
26
+ ".": "./dist/index.js",
27
+ "./config": "./dist/config/index.js",
28
+ "./package.json": "./package.json"
29
+ },
30
+ "typesVersions": {
31
+ ">=1.0": {
32
+ "config": [
33
+ "dist/config/index.d.ts"
34
+ ]
35
+ }
36
+ },
37
+ "author": "Jonny Burger <jonny@remotion.dev>",
38
+ "license": "SEE LICENSE IN LICENSE.md",
39
+ "dependencies": {
40
+ "@remotion/bundler": "npm:@junwan666/remotion-bundler@4.0.448-zh.0",
41
+ "@remotion/media-utils": "npm:@junwan666/remotion-media-utils@4.0.448-zh.0",
42
+ "@remotion/player": "npm:@junwan666/remotion-player@4.0.448-zh.0",
43
+ "@remotion/renderer": "npm:@junwan666/remotion-renderer@4.0.448-zh.0",
44
+ "@remotion/studio-shared": "npm:@junwan666/remotion-studio-shared@4.0.448-zh.0",
45
+ "@remotion/studio-server": "npm:@junwan666/remotion-studio-server@4.0.448-zh.0",
46
+ "@remotion/studio": "npm:@junwan666/remotion-studio@4.0.448-zh.0",
47
+ "dotenv": "17.3.1",
48
+ "minimist": "1.2.6",
49
+ "prompts": "2.4.2",
50
+ "remotion": "npm:@junwan666/remotion@4.0.448-zh.0"
51
+ },
52
+ "peerDependencies": {
53
+ "react": ">=16.8.0",
54
+ "react-dom": ">=16.8.0"
55
+ },
56
+ "devDependencies": {
57
+ "@types/minimist": "^1.2.2",
58
+ "@types/prompts": "^2.4.1",
59
+ "@types/prettier": "^2.7.2",
60
+ "@types/node": "20.12.14",
61
+ "@remotion/zod-types": "npm:@junwan666/remotion-zod-types@4.0.448-zh.0",
62
+ "@remotion/tailwind-v4": "npm:@junwan666/remotion-tailwind-v4@4.0.448-zh.0",
63
+ "@remotion/enable-scss": "npm:@junwan666/remotion-enable-scss@4.0.448-zh.0",
64
+ "@remotion/skia": "npm:@junwan666/remotion-skia@4.0.448-zh.0",
65
+ "react": "19.2.3",
66
+ "react-dom": "19.2.3",
67
+ "zod": "4.3.6",
68
+ "@remotion/eslint-config-internal": "npm:@junwan666/remotion-eslint-config-internal@4.0.448-zh.0",
69
+ "eslint": "9.19.0",
70
+ "@typescript/native-preview": "7.0.0-dev.20260217.1"
71
+ },
72
+ "keywords": [
73
+ "remotion",
74
+ "ffmpeg",
75
+ "video",
76
+ "react",
77
+ "player"
78
+ ],
79
+ "publishConfig": {
80
+ "access": "public"
81
+ },
82
+ "homepage": "https://www.remotion.dev/docs/cli"
83
+ }
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ const dotenv = require('dotenv');
3
+ dotenv.config({quiet: true});
4
+ const {cli} = require('./dist/index');
5
+
6
+ cli()
7
+ .then(() => process.exit(0))
8
+ .catch((err) => {
9
+ console.error(err);
10
+ process.exit(1);
11
+ });
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env bun
2
+ const {cli} = require('./dist/index');
3
+
4
+ // Just like "remotion", but it uses Bun
5
+ cli()
6
+ .then(() => process.exit(0))
7
+ .catch((err) => {
8
+ console.error(err);
9
+ process.exit(1);
10
+ });
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env deno --allow-env --allow-read --allow-write --allow-net --allow-run --allow-sys
2
+ const {cli} = require('./dist/index');
3
+
4
+ // Just like "remotion", but it uses Bun
5
+ cli()
6
+ .then(() => process.exit(0))
7
+ .catch((err) => {
8
+ console.error(err);
9
+ process.exit(1);
10
+ });