-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 2.02 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
{
"name": "posecode-monorepo",
"version": "0.2.0",
"private": true,
"description": "Posecode: a kinematic motion protocol for LLMs. Describe 3D human movement as text; render it in the browser.",
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"playground",
"editors/*"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"dev": "npm run dev -w playground",
"build": "npm run build -w playground",
"build:packages": "npm run build -w posecode-parser && npm run build -w posecode-share && npm run build -w posecode-render && npm run build -w posecode-embed && npm run build -w posecode-mcp",
"check:packages": "node scripts/check-packages.mjs",
"changeset": "changeset",
"version-packages": "changeset version && node scripts/sync-mcp-version.mjs",
"release": "npm run build:packages && npm run check:packages && changeset publish",
"prepare:xbot": "node scripts/prepare-xbot.mjs",
"eval": "tsx packages/posecode-eval/src/cli.ts",
"video:cut2": "remotion render video/cut2/index.tsx PosecodeCut2 docs/launch-media/posecode-cut2-builder-16x9.mp4 --public-dir video/cut2/public --codec h264 --crf 16",
"video:cut2:vertical": "remotion render video/cut2/index.tsx PosecodeCut2Vertical docs/launch-media/posecode-cut2-builder-9x16.mp4 --public-dir video/cut2/public --codec h264 --crf 16",
"video:cut2:still": "remotion still video/cut2/index.tsx PosecodeCut2 docs/launch-media/posecode-cut2-payoff.png --public-dir video/cut2/public --frame 825",
"typecheck": "for p in packages/*/tsconfig.json playground/tsconfig.json editors/*/tsconfig.json; do tsc --noEmit -p \"$p\" || exit 1; done",
"gifs": "node scripts/capture-gifs.mjs"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@remotion/cli": "4.0.489",
"@vitest/coverage-v8": "^4.1.10",
"gifenc": "^1.0.3",
"playwright-core": "^1.61.1",
"remotion": "4.0.489",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
}
}