-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 922 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 922 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
29
30
31
32
33
34
35
36
37
38
{
"name": "code2video-ai",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --hostname 127.0.0.1",
"build": "next build",
"start": "next start --hostname 127.0.0.1",
"lint": "eslint",
"renderer:image": "docker build -t code2video-ai-renderer:4.0.503 renderer",
"postinstall": "cd renderer && npm install"
},
"dependencies": {
"@google/genai": "^2.15.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"lucide-react": "^1.17.0",
"next": "16.2.12",
"react": "19.2.8",
"react-dom": "19.2.8",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"typescript": "^5"
},
"engines": {
"node": ">=20.9.0"
},
"overrides": {
"postcss": "8.5.25",
"sharp": "0.35.3"
}
}