forked from remotion-dev/remotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.25 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
{
"name": "remotion-monorepo",
"version": "0.0.0",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"test": "turbo run lint test",
"stylecheck": "turbo run lint formatting",
"build": "turbo run build",
"build-docs": "turbo run build-docs",
"ci": "turbo run build test --concurrency=50%",
"watch": "tsc -b --verbose -w",
"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": "rm -rf packages/**/dist && rm -rf packages/**/node_modules && rm -rf node_modules && rm -rf .cache && rm -rf packages/**/tsconfig.tsbuildinfo && rm -rf packages/**/tsconfig-cjs.tsbuildinfo && rm -f packages/tsconfig.tsbuildinfo && rm -rf packages/**/.turbo && rm -rf packages/**/.rollup.cache"
},
"engines": {
"node": ">=16",
"pnpm": ">=3"
},
"pnpm": {
"overrides": {
"caniuse-lite": "1.0.30001577"
}
},
"devDependencies": {
"@types/node": "18.14.6"
},
"dependencies": {
"turbo": "1.11.3",
"typescript": "4.9.5"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}