-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 2.11 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
{
"name": "motion-gpu-monorepo",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"docs:changelog": "node ./scripts/generate-changelog-docs.mjs",
"dev": "pnpm run dev:web",
"dev:web": "pnpm run build:motion-gpu && pnpm run dev:web:live",
"dev:web:live": "bash -lc 'set -euo pipefail; pnpm --dir packages/motion-gpu run build:watch & WATCH_PID=$!; trap \"kill $WATCH_PID 2>/dev/null || true\" EXIT INT TERM; pnpm --dir apps/web run dev'",
"build": "pnpm run build:motion-gpu && pnpm run build:web",
"build:web": "pnpm --dir apps/web run build",
"build:motion-gpu": "pnpm --dir packages/motion-gpu run build",
"preview": "pnpm run build:motion-gpu && pnpm --dir apps/web run preview",
"deploy:web": "pnpm run build:motion-gpu && pnpm --dir apps/web run deploy",
"check": "pnpm run build:motion-gpu && pnpm run check:motion-gpu && pnpm run check:web",
"check:web": "pnpm --dir apps/web run check",
"check:motion-gpu": "pnpm --dir packages/motion-gpu run check",
"test": "pnpm run build:motion-gpu && pnpm run test:motion-gpu",
"test:motion-gpu": "pnpm --dir packages/motion-gpu run test",
"perf:motion-gpu:core": "pnpm --dir packages/motion-gpu run perf:core",
"perf:motion-gpu:core:check": "pnpm --dir packages/motion-gpu run perf:core:check",
"perf:motion-gpu:core:baseline": "pnpm --dir packages/motion-gpu run perf:core:baseline",
"perf:motion-gpu": "pnpm --dir packages/motion-gpu run perf:runtime",
"perf:motion-gpu:check": "pnpm --dir packages/motion-gpu run perf:runtime:check",
"perf:motion-gpu:baseline": "pnpm --dir packages/motion-gpu run perf:runtime:baseline",
"lint": "pnpm run lint:motion-gpu && pnpm run lint:web",
"lint:web": "pnpm --dir apps/web run lint",
"lint:motion-gpu": "pnpm --dir packages/motion-gpu run lint",
"format": "pnpm --dir apps/web run format && pnpm --dir packages/motion-gpu run format"
},
"dependencies": {
"prettier-plugin-tailwindcss": "^0.7.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
},
"packageManager": "pnpm@10.24.0"
}