forked from remotion-dev/remotion
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 6.09 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 6.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "remotion-monorepo",
"version": "0.0.0",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"test": "turbo run lint test --no-update-notifier",
"ts-build": "tsc -b --verbose --watch",
"stylecheck": "turbo run lint formatting --no-update-notifier",
"formatting": "turbo run formatting --no-update-notifier",
"format": "bun pre-commit.ts",
"build": "turbo run make --no-update-notifier",
"build-docs": "TURBO_TELEMETRY_DISABLED=1 turbo run build-docs --no-update-notifier",
"testssr": "turbo run testssr --no-update-notifier",
"testtemplates": "turbo run testtemplates --no-update-notifier",
"teste2e": "turbo run teste2e --no-update-notifier",
"testwebcodecs": "turbo run testwebcodecs --no-update-notifier",
"testwebrenderer": "turbo run testwebrenderer --concurrency=1 --no-update-notifier",
"testlambda": "turbo run testlambda --concurrency=1 --no-update-notifier",
"ci": "turbo run make test --concurrency=1 --no-update-notifier",
"watch": "turbo watch make --concurrency=2 --experimental-write-cache",
"makewhisperweb": "turbo run make --filter='@remotion/whisper-web'",
"watchmedia": "turbo watch make --experimental-write-cache --filter='@remotion/media'",
"watchwhisperweb": "turbo watch make --experimental-write-cache --filter='@remotion/whisper-web'",
"watchdesign": "turbo watch make --experimental-write-cache --filter='@remotion/promo-pages'",
"makewebcodecs": "turbo run make --filter='@remotion/media-parser' --filter='@remotion/webcodecs'",
"watchmediaparser": "turbo watch make --experimental-write-cache --filter='@remotion/media-parser'",
"watchmediautils": "turbo watch make --experimental-write-cache --filter='@remotion/media-utils'",
"watchwebrenderer": "turbo watch make --experimental-write-cache --filter='@remotion/web-renderer'",
"watchwebcodecs": "turbo watch make --experimental-write-cache --filter='@remotion/webcodecs'",
"makewebrenderer": "turbo run make --filter='@remotion/web-renderer'",
"makecore": "turbo run make --filter='remotion'",
"watchcore": "turbo watch make --experimental-write-cache --filter='remotion'",
"watchcli": "turbo watch make --experimental-write-cache --filter='@remotion/cli'",
"makeplayer": "turbo run make --filter='@remotion/player'",
"watchplayer": "turbo watch make --experimental-write-cache --filter='@remotion/player'",
"makestudio": "turbo run make --filter='@remotion/studio' --filter='@remotion/studio-server'",
"watchstudio": "turbo watch make --experimental-write-cache --filter='@remotion/studio' --filter='@remotion/studio-server'",
"makeserverless": "turbo run make --filter='@remotion/lambda' --filter='@remotion/serverless' --filter='@remotion/streaming'",
"watchserverless": "turbo watch make --experimental-write-cache --filter='@remotion/lambda' --filter='@remotion/serverless' --filter='@remotion/streaming'",
"makethree": "turbo run make --filter='@remotion/three'",
"watchthree": "turbo watch make --experimental-write-cache --filter='@remotion/three'",
"release": "bun publish.ts && turbo run publishprivate --concurrency=1 && git push --tags && git push",
"publishtemplates": "cd packages/it-tests && bun src/templates/publish.ts",
"cleantypes": "rm -rf packages/**/tsconfig.tsbuildinfo && rm -f packages/tsconfig.tsbuildinfo",
"clean": "turbo run clean && rm -rf packages/**/dist && rm -rf .cache && rm -rf packages/**/tsconfig.tsbuildinfo && rm -f packages/tsconfig.tsbuildinfo && rm -rf packages/**/.turbo && rm -rf .turbo",
"cleanall": "turbo run clean && rm -rf packages/**/dist && rm -rf packages/**/node_modules && rm -rf node_modules && rm -rf .cache && rm -rf packages/**/tsconfig.tsbuildinfo && rm -f packages/tsconfig.tsbuildinfo && rm -rf packages/**/.turbo && rm -rf .turbo",
"prepare": "git config core.hooksPath .githooks"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/babel__standalone": "^7.1.9",
"@types/bun": "catalog:",
"@types/deno": "2.0.0",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"oxfmt": "0.35.0",
"prettier": "catalog:",
"prettier-plugin-organize-imports": "3.2.4"
},
"dependencies": {
"p-limit": "7.2.0",
"typescript": "5.9.3",
"turbo": "2.9.3",
"@typescript/native-preview": "catalog:"
},
"packageManager": "bun@1.3.3",
"overrides": {
"caniuse-lite": "1.0.30001766",
"@rspack/core": "1.7.6"
},
"workspaces": {
"packages": [
"packages/**",
"!packages/lambda-php-example/vendor/remotion/lambda",
"!packages/player-example/.next",
"!packages/it-tests/whisper.cpp",
"!packages/cloudrun/container",
"!packages/template-recorder/whisper.cpp",
"!packages/template-recorder/whisper.cpp/**",
"!packages/template-tiktok/whisper.cpp",
"!packages/template-tiktok/whisper.cpp/**",
"!packages/template-audiogram/whisper.cpp",
"!packages/template-audiogram/whisper.cpp/**",
"!packages/template-vercel/**",
"!packages/bugs"
],
"catalog": {
"@aws-sdk/s3-request-presigner": "3.986.0",
"@aws-sdk/credential-provider-ini": "3.972.5",
"@aws-sdk/client-s3": "3.986.0",
"@aws-sdk/client-lambda": "3.986.0",
"@aws-sdk/client-iam": "3.986.0",
"@aws-sdk/client-sts": "3.986.0",
"@aws-sdk/lib-storage": "3.986.0",
"@aws-sdk/client-cloudwatch-logs": "3.986.0",
"@aws-sdk/client-service-quotas": "3.986.0",
"@aws-sdk/middleware-flexible-checksums": "3.972.5",
"react": "19.2.3",
"react-dom": "19.2.3",
"eslint": "9.19.0",
"prettier": "3.8.1",
"zod": "4.3.6",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/node": "20.12.14",
"@types/web": "0.0.166",
"@types/bun": "1.3.3",
"mediabunny": "1.39.2",
"@mediabunny/mp3-encoder": "1.39.2",
"@mediabunny/aac-encoder": "1.39.2",
"@mediabunny/flac-encoder": "1.39.2",
"@mediabunny/ac3": "1.39.2",
"next": "16.1.7",
"three": "0.178.0",
"sharp": "0.34.5",
"@react-three/fiber": "9.2.0",
"@types/three": "0.170.0",
"openai": "4.67.1",
"@types/dom-webcodecs": "0.1.11",
"@vitejs/plugin-react": "4.3.4",
"@vitest/browser-playwright": "4.0.9",
"playwright": "1.55.1",
"vitest": "4.0.9",
"@typescript/native-preview": "7.0.0-dev.20260217.1"
}
}
}