-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.82 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
{
"name": "podcli",
"version": "2.5.0",
"private": true,
"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",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"podcast",
"clips",
"tiktok",
"youtube-shorts",
"reels",
"video",
"captions",
"whisper",
"mcp",
"claude",
"ffmpeg"
],
"scripts": {
"build": "tsc && vite build --config src/ui/client/vite.config.ts",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"ui": "tsx src/ui/web-server.ts",
"ui:dev": "vite --config src/ui/client/vite.config.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.29.0",
"@remotion/bundler": "^4.0.490",
"@remotion/cli": "^4.0.490",
"@remotion/renderer": "^4.0.490",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"lucide-react": "^1.25.0",
"multer": "^2.2.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^6.30.4",
"remotion": "^4.0.490",
"uuid": "^14.0.1",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/multer": "^2.2.0",
"@types/node": "^22.12.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.7.0",
"tsx": "^4.23.1",
"typescript": "^7.0.2",
"vite": "^5.4.21",
"vitest": "^2.1.9"
}
}