-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.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
{
"name": "podcli",
"version": "1.0.0",
"description": "AI-powered podcast clip generator for TikTok/YouTube Shorts. Transcribe, find viral moments, export vertical clips with burned captions.",
"type": "module",
"license": "AGPL-3.0-only",
"main": "dist/index.js",
"bin": {
"podcli": "./podcli"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"podcast",
"clips",
"tiktok",
"youtube-shorts",
"reels",
"video",
"captions",
"whisper",
"mcp",
"claude",
"ffmpeg"
],
"scripts": {
"build": "tsc && cp -r src/ui/public dist/ui/",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"ui": "tsx src/ui/web-server.ts",
"ui:prod": "node dist/ui/web-server.js",
"remotion:prebundle": "node remotion/render.mjs --prebundle",
"remotion:studio": "npx remotion studio remotion/src/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@fontsource/dm-sans": "^5.2.8",
"@modelcontextprotocol/sdk": "^1.12.1",
"@remotion/bundler": "^4.0.441",
"@remotion/cli": "^4.0.441",
"@remotion/renderer": "^4.0.441",
"dotenv": "^16.4.7",
"express": "^4.21.0",
"multer": "^1.4.5-lts.1",
"remotion": "^4.0.441",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.12.0",
"@types/uuid": "^10.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.9"
}
}