-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 6.53 KB
/
Copy pathpackage.json
File metadata and controls
154 lines (154 loc) · 6.53 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "deckcreate",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"pexels:fetch": "node scripts/fetch-pexels.js",
"camera:color-match": "tsx scripts/camera/color-match.ts",
"camera:setup": "node scripts/camera/setup-camera.js",
"carousel:captions": "node scripts/carousel/CaptionExtractor.js",
"carousel:generate": "node scripts/carousel/generate-carousel.js",
"carousel:generate:bulk": "node scripts/carousel/generate-carousel.js --bulk",
"carousel:pdf": "node scripts/carousel/compile-pdf.js",
"carousel:wizard": "node scripts/carousel/carousel-wizard.js",
"cut:preview": "node scripts/cut-preview.js",
"dev": "next dev",
"diarize": "node scripts/diarize/diarize-audio.js",
"lint": "eslint",
"prepare": "husky || true",
"remotion:gallery": "npx remotion studio remotion/galleryRoot.ts",
"remotion:studio": "npx remotion studio",
"render:episode": "node scripts/render-episode.js",
"render:episode:resume": "node scripts/render-episode-resumable.js",
"render:episode:chunk": "node scripts/render-episode-resumable.js",
"render:hook-intro": "node scripts/render-hook-intro.js",
"check:media-urls": "node scripts/lib/checkMediaUrls.js",
"review:guest": "node scripts/guest-review.js",
"shorts:extract-doc": "node scripts/shorts/extract-short-doc.js",
"shorts:camera-setup": "node scripts/shorts/portrait-camera-setup.js",
"shorts:merge-doc": "node scripts/shorts/merge-short-doc.js",
"shorts:render": "node scripts/shorts/render-short.js",
"shorts:wizard": "node scripts/shorts-wizard.js",
"review:hooks": "node scripts/hook-qa.js",
"speakers:assign": "node scripts/diarize/assign-speakers.js",
"start": "next start",
"sync": "node scripts/sync/sync-audio-video.js",
"test": "jest",
"test:unit": "jest --selectProjects node react",
"test:integration": "jest --selectProjects node --testPathPattern='tests/integration'",
"test:react": "jest --selectProjects react",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:all": "npm run test && npm run test:e2e",
"thumbnail:candidates:extract": "python3 scripts/thumbnail/extract-speaker-candidates.py --transcript public/edit/transcript.json --camera-profiles public/camera/camera-profiles.json --video public/sync/output/synced-output-1.mp4 --output-dir public/thumbnail/candidates --num-candidates 6",
"thumbnail:cutouts:generate": "node scripts/thumbnail/generate-cutouts-from-selection.js",
"thumbnail:frames:select": "node scripts/thumbnail/select-speaker-frames.js",
"thumbnail:portrait": "node scripts/thumbnail/generate-portrait-thumbnail.js",
"thumbnail:selectable": "npm run thumbnail:candidates:extract && npm run thumbnail:frames:select && npm run thumbnail:cutouts:generate && npm run thumbnail:simple",
"thumbnail:simple": "node scripts/thumbnail/generate-thumbnail.js",
"thumbnail:wizard": "node scripts/thumbnail/thumbnail-wizard.js",
"transcribe": "node scripts/transcribe/transcribe-audio.js",
"transcript:align": "node scripts/align/align-transcript.js",
"transcript:init": "node scripts/edit-transcript.js",
"transcript:merge": "node scripts/edit-transcript.js --merge-doc public/edit/transcript.doc.txt",
"transcript:merge:cut-pauses": "node scripts/edit-transcript.js --merge-doc public/edit/transcript.doc.txt --auto-cut-pauses 0.5",
"util:vtt-to-srt": "node scripts/shared/vtt-to-srt.js",
"video:optimize": "node scripts/optimize/optimize-for-remotion.js",
"video:conform": "node scripts/conform/conform-to-raw.js",
"video:proxy": "node scripts/proxy/transcode-proxy.js",
"video:wizard": "node scripts/wizard.js"
},
"dependencies": {
"@mantine/carousel": "^8.3.15",
"@mantine/core": "^8.3.15",
"@mantine/dates": "^8.3.15",
"@mantine/form": "^8.3.15",
"@mantine/hooks": "^8.3.15",
"@mantine/notifications": "^8.3.15",
"@remotion/captions": "4.0.477",
"@remotion/cli": "4.0.477",
"@remotion/gif": "4.0.477",
"@remotion/install-whisper-cpp": "4.0.477",
"@remotion/media-parser": "4.0.477",
"@remotion/media-utils": "4.0.477",
"@remotion/sfx": "4.0.477",
"@tabler/icons-react": "^3.29.0",
"@types/file-saver": "^2.0.7",
"canvas": "^3.2.3",
"dayjs": "^1.11.19",
"dotenv": "^16.0.0",
"embla-carousel-react": "^8.6.0",
"fft.js": "^4.0.4",
"file-saver": "^2.0.5",
"fs-extra": "^11.2.0",
"jszip": "^3.10.1",
"next": "16.2.12",
"pdfkit": "^0.14.0",
"puppeteer": "^23.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"remotion": "4.0.477",
"sharp": "^0.35.3",
"wavefile": "^11.0.0",
"youtube-transcript": "^1.3.0"
},
"optionalDependencies": {
"@img/sharp-libvips-linux-x64": "1.3.2",
"@img/sharp-linux-x64": "0.35.3",
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
"@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
"lightningcss-linux-arm64-gnu": "1.30.2",
"lightningcss-linux-x64-gnu": "1.30.2"
},
"overrides": {
"postcss": "^8.5.10",
"ws": ">=8.21.0",
"js-yaml": "^4.2.0",
"remotion": "4.0.477",
"sharp": "^0.35.3",
"babel-plugin-istanbul": "^8.0.2",
"glob": "^13.0.6"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --max-warnings=0 --no-warn-ignored",
"*.{js,mjs}": "eslint --max-warnings=0 --no-warn-ignored",
"*.json": "node .husky/validate-json.cjs",
"*.py": "python3 -m py_compile"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@playwright/test": "^1.59.1",
"@remotion/eslint-plugin": "4.0.477",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-jest": "^30.4.1",
"babel-plugin-transform-import-meta": "^2.3.3",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-environment-node": "^30.4.1",
"lint-staged": "^16.4.0",
"postcss": "^8.5.10",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}