-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.08 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
{
"name": "feature-clip-studio",
"version": "0.1.0",
"description": "Turn live product flows into storyboarded proof assets: MP4/GIF walkthroughs, screenshots, readable state captures, and README-ready evidence. Playwright capture -> Remotion render -> ffmpeg/exported artifacts.",
"type": "module",
"license": "MIT",
"author": "Homen Shum",
"repository": {
"type": "git",
"url": "https://github.com/HomenShum/FeatureClipStudio"
},
"keywords": [
"demo",
"gif",
"walkthrough",
"screencast",
"remotion",
"playwright",
"product-demo",
"readme",
"streamlit"
],
"scripts": {
"check": "node check.mjs",
"probe:opening": "node probe-opening-frame.mjs",
"probe:maxpath": "node probe-max-path.mjs",
"audit:ui": "node audit-ui.mjs",
"capture": "node walkthrough.mjs",
"capture:collab": "node walkthrough.collab.mjs",
"capture:roomos": "node walkthrough.roomos.mjs",
"capture:visual": "node walkthrough.visual.mjs",
"capture:solo": "node walkthrough.solo-founder.mjs",
"studio": "node run-remotion.mjs studio src/index.js",
"studio:roomos": "node run-remotion.mjs studio src/roomos-index.js",
"render": "node run-remotion.mjs render src/index.js",
"render:example": "node run-remotion.mjs render src/index.js WT-NodeRoom out/example.mp4 --concurrency=2",
"render:roomos": "node run-remotion.mjs render src/roomos-index.js WTG-RoomOSV0123 out/room-os-v0-v1-v2-v3.mp4 --concurrency=2",
"judge": "node judge-video.mjs",
"judge:rubric": "node judge-rubric.mjs",
"references:find": "node find-references.mjs",
"references:analyze": "node analyze-reference.mjs",
"clip": "node clip.mjs",
"iterate": "node iterate.mjs",
"score": "node score-cli.mjs",
"voice": "node voice.mjs",
"readability": "node readability.mjs",
"retime": "node retime.mjs",
"captions": "node apply-captions.mjs"
},
"dependencies": {
"@remotion/cli": "^4.0.474",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remotion": "^4.0.474"
},
"devDependencies": {
"playwright": "^1.60.0"
}
}