forked from remotion-dev/remotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.52 KB
/
package.json
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
{
"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",
"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",
"testlambda": "turbo run testlambda --concurrency=1 --no-update-notifier",
"ci": "turbo run make test --concurrency=1 --no-update-notifier",
"watch": "turbo watch make",
"release-alpha": "pnpm recursive publish --tag=alpha --no-git-checks && pnpm recursive run --sequential publishprivate",
"release": "pnpm recursive publish && pnpm recursive run --sequential publishprivate && git push --tags && git push",
"clean": "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",
"pnpm": ">=3"
},
"pnpm": {
"overrides": {
"caniuse-lite": "1.0.30001636"
}
},
"devDependencies": {
"@types/bun": "1.1.10",
"@types/deno": "2.0.0",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "3.2.4"
},
"dependencies": {
"turbo": "2.2.3",
"typescript": "5.5.4"
},
"packageManager": "[email protected]"
}