forked from remotion-dev/remotion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.56 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 3.56 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
{
"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",
"build": "turbo run make --no-update-notifier",
"build-docs": "turbo run build-docs --no-update-notifier",
"testssr": "turbo run testssr --no-update-notifier",
"testwebcodecs": "turbo run testwebcodecs --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'",
"watchwhisperweb": "turbo watch make --experimental-write-cache --filter='@remotion/whisper-web'",
"makewebcodecs": "turbo run make --filter='@remotion/media-parser' --filter='@remotion/webcodecs'",
"watchwebcodecs": "turbo watch make --experimental-write-cache --filter='@remotion/media-parser' --filter='@remotion/webcodecs'",
"watchwebrenderer": "turbo watch make --experimental-write-cache --filter='@remotion/web-renderer'",
"makewebrenderer": "turbo run make --filter='@remotion/web-renderer'",
"makecore": "turbo run make --filter='remotion'",
"watchcore": "turbo watch make --experimental-write-cache --filter='remotion'",
"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",
"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"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/bun": "1.3.0",
"@types/deno": "2.0.0",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"prettier": "3.6.0",
"prettier-plugin-organize-imports": "3.2.4"
},
"dependencies": {
"turbo": "2.5.8",
"typescript": "5.8.2"
},
"packageManager": "bun@1.3.0",
"overrides": {
"caniuse-lite": "1.0.30001724"
},
"workspaces": [
"packages/**",
"!packages/lambda-php-example/vendor/remotion/lambda",
"!packages/player-example/.next",
"!packages/it-tests/whisper.cpp",
"!packages/cloudrun/container",
"!packages/template-tiktok/whisper.cpp",
"!packages/template-tiktok/whisper.cpp/**",
"!packages/bugs"
]
}