-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 774 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 774 Bytes
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
{
"name": "video-forger",
"version": "1.0.0",
"description": "Video Forger — AI-powered programmatic video generation with Claude MCP integration",
"engines": { "node": ">=18" },
"scripts": {
"start": "node server.js",
"preview": "npx remotion preview src/index.ts",
"render": "npx remotion render src/index.ts"
},
"dependencies": {
"@remotion/cli": "^4.0.0",
"@remotion/renderer": "^4.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remotion": "^4.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"typescript": "^5.0.0"
}
}