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
157 lines (157 loc) · 7.69 KB
/
Copy pathpackage.json
File metadata and controls
157 lines (157 loc) · 7.69 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"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 && bun run checkskills",
"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",
"testmonorepo": "turbo run testmonorepo --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",
"testbrowserstudio": "turbo run testbrowserstudio --concurrency=1 --no-update-notifier",
"testlayoututils": "turbo run testlayoututils --concurrency=1 --no-update-notifier",
"testeffectsvisual": "turbo run testeffectsvisual --concurrency=1 --no-update-notifier",
"testlambda": "turbo run testlambda --concurrency=1 --no-update-notifier",
"testnextjs": "turbo run testnextjs --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",
"react-scan:capture": "bun packages/.monorepo/react-scan/capture.ts",
"studio:cpu-profile": "bun packages/.monorepo/cpu-profile/capture.ts",
"publishtemplates": "cd packages/it-tests && bun src/templates/publish.ts",
"playground": "bun packages/skills-evals/src/playground.ts",
"checkskills": "bun packages/skills/scripts/sync-agent-skills.ts --check && bun packages/skills/scripts/sync-embedded-skills.ts --check && bun packages/skills/scripts/sync-readme.ts --check && bun run validateskills",
"syncskills": "bun packages/skills/scripts/sync-agent-skills.ts && bun packages/skills/scripts/sync-embedded-skills.ts && bun packages/skills/scripts/sync-readme.ts",
"validateskills": "bun packages/skills/scripts/validate-links.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",
"react-scan": "0.5.7"
},
"dependencies": {
"@typescript/native-preview": "catalog:",
"p-limit": "7.2.0",
"turbo": "2.9.14",
"typescript": "5.9.3"
},
"packageManager": "bun@1.3.3",
"overrides": {
"@aws-sdk/xml-builder": "3.972.5",
"caniuse-lite": "1.0.30001766",
"@rspack/core": "1.7.11",
"@remix-run/dev": "2.17.4",
"@remix-run/node": "2.17.4",
"@remix-run/react": "2.17.4",
"@remix-run/serve": "2.17.4",
"@remix-run/server-runtime": "2.17.4",
"protobufjs": "7.6.5",
"websocket-driver": "0.7.5"
},
"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/skills-evals/.runs/**",
"!packages/skills-evals/.site/**",
"!packages/skills-evals/.playground/**",
"!packages/bugs"
],
"catalog": {
"@huggingface/transformers": "4.2.0",
"@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.5.4",
"@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.55.5",
"@mediabunny/server": "1.55.5",
"@mediabunny/mp3-encoder": "1.55.5",
"@mediabunny/aac-encoder": "1.55.5",
"@mediabunny/flac-encoder": "1.55.5",
"@mediabunny/prores": "1.55.5",
"@mediabunny/ac3": "1.55.5",
"@mediabunny/dts": "1.55.5",
"next": "16.2.11",
"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"
}
}
}