@junwan666/remotion-cloudrun 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/package.json +64 -0
- package/readme.md +18 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"repository": {
|
|
3
|
+
"url": "https://github.com/JunWan666/remotion-zh/tree/main/packages/cloudrun"
|
|
4
|
+
},
|
|
5
|
+
"name": "@junwan666/remotion-cloudrun",
|
|
6
|
+
"version": "4.0.448-zh.0",
|
|
7
|
+
"description": "Render Remotion videos on Google Cloud Run",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"scripts": {
|
|
11
|
+
"make": "tsgo -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json",
|
|
12
|
+
"makeruntime": "bun build.ts",
|
|
13
|
+
"lint": "eslint src",
|
|
14
|
+
"test": "bun test src",
|
|
15
|
+
"publish": "bun build.ts && cd container && ARTIFACT_REGISTRY_ENV=production node submit.mjs"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@google-cloud/artifact-registry": "3.5.1",
|
|
19
|
+
"@google-cloud/functions-framework": "3.4.6",
|
|
20
|
+
"@google-cloud/run": "1.5.1",
|
|
21
|
+
"@google-cloud/storage": "7.15.2",
|
|
22
|
+
"@google-cloud/resource-manager": "5.3.1",
|
|
23
|
+
"@google-cloud/logging": "11.2.0",
|
|
24
|
+
"@remotion/bundler": "npm:@junwan666/remotion-bundler@4.0.448-zh.0",
|
|
25
|
+
"@remotion/cli": "npm:@junwan666/remotion-cli@4.0.448-zh.0",
|
|
26
|
+
"@remotion/renderer": "npm:@junwan666/remotion-renderer@4.0.448-zh.0",
|
|
27
|
+
"google-auth-library": "8.7.0",
|
|
28
|
+
"remotion": "npm:@junwan666/remotion@4.0.448-zh.0",
|
|
29
|
+
"zod": "4.3.6"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@remotion/compositor-linux-x64-gnu": "npm:@junwan666/remotion-compositor-linux-x64-gnu@4.0.448-zh.0",
|
|
33
|
+
"@types/minimist": "1.2.2",
|
|
34
|
+
"@remotion/eslint-config-internal": "npm:@junwan666/remotion-eslint-config-internal@4.0.448-zh.0",
|
|
35
|
+
"eslint": "9.19.0",
|
|
36
|
+
"@types/node": "20.12.14",
|
|
37
|
+
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
38
|
+
},
|
|
39
|
+
"exports": {
|
|
40
|
+
"./package.json": "./package.json",
|
|
41
|
+
".": "./dist/index.js",
|
|
42
|
+
"./defaults": "./dist/defaults.js",
|
|
43
|
+
"./regions": "./dist/regions.js",
|
|
44
|
+
"./client": "./dist/client.js",
|
|
45
|
+
"./permissions.json": "./dist/shared/sa-permissions.json"
|
|
46
|
+
},
|
|
47
|
+
"typesVersions": {
|
|
48
|
+
">=1.0": {
|
|
49
|
+
"defaults": [
|
|
50
|
+
"dist/defaults.d.ts"
|
|
51
|
+
],
|
|
52
|
+
"regions": [
|
|
53
|
+
"dist/regions.d.ts"
|
|
54
|
+
],
|
|
55
|
+
"client": [
|
|
56
|
+
"dist/client.d.ts"
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://www.remotion.dev/docs/cloudrun",
|
|
61
|
+
"publishConfig": {
|
|
62
|
+
"access": "public"
|
|
63
|
+
}
|
|
64
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @remotion/cloudrun
|
|
2
|
+
|
|
3
|
+
Render Remotion videos on Google Cloud Run
|
|
4
|
+
|
|
5
|
+
[](https://npmcharts.com/compare/@remotion/cloudrun?minimal=true)
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @remotion/cloudrun --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/cloudrun) for more information.
|