-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
155 lines (155 loc) · 7.46 KB
/
package.json
File metadata and controls
155 lines (155 loc) · 7.46 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
155
{
"name": "deckcreate",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"camera:color-match": "tsx scripts/camera/color-match.ts",
"camera:color-match:docker": "docker compose run --rm color-match",
"camera:setup": "node scripts/camera/setup-camera.js",
"camera:setup:docker": "docker compose run --rm --service-ports setup-camera",
"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:pdf:docker": "docker compose run --rm carousel npm run carousel:pdf",
"carousel:wizard": "node scripts/carousel/carousel-wizard.js",
"carousel:wizard:docker": "docker compose run --rm --service-ports carousel npm run carousel:wizard",
"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:hook-intro": "node scripts/render-hook-intro.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:camera-setup:docker": "docker compose run --rm --service-ports setup-camera npm run shorts:camera-setup",
"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",
"shorts:wizard:docker": "docker compose run --rm --service-ports wizard npm run shorts:wizard",
"review:hooks": "node scripts/hook-qa.js",
"review:hooks:docker": "docker compose run --rm hook-qa",
"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:candidates:extract:docker": "docker compose run --rm thumbnail 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:cutouts:generate:docker": "docker compose run --rm thumbnail npm run thumbnail:cutouts:generate",
"thumbnail:frames:select": "node scripts/thumbnail/select-speaker-frames.js",
"thumbnail:frames:select:docker": "docker compose run --rm -it thumbnail npm run thumbnail:frames:select",
"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:simple:docker": "docker compose run --rm thumbnail node scripts/thumbnail/generate-thumbnail.js",
"thumbnail:wizard": "node scripts/thumbnail/thumbnail-wizard.js",
"thumbnail:wizard:docker": "docker compose run --rm --service-ports thumbnail 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",
"video:wizard:docker": "docker compose run --rm --service-ports wizard"
},
"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/cli": "^4.0.451",
"@remotion/gif": "^4.0.451",
"@remotion/install-whisper-cpp": "^4.0.451",
"@remotion/media-parser": "^4.0.451",
"@remotion/media-utils": "^4.0.451",
"@remotion/sfx": "^4.0.451",
"@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.6",
"pdfkit": "^0.14.0",
"puppeteer": "^23.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"remotion": "^4.0.451",
"sharp": "^0.33.0",
"wavefile": "^11.0.0",
"youtube-transcript": "^1.3.0"
},
"optionalDependencies": {
"@img/sharp-libvips-linux-x64": "1.0.4",
"@img/sharp-linux-x64": "0.33.5",
"@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"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --max-warnings=0",
"*.{js,mjs}": "eslint --max-warnings=0",
"*.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.451",
"@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.2.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.4.1",
"jest-environment-node": "^29.7.0",
"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"
}
}