-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
43 lines (43 loc) · 994 Bytes
/
package.json
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
{
"name": "vigenair",
"version": "1.0.0",
"description": "ViGenAiR - Recrafting Video Ads with Generative AI",
"keywords": [
"machine-learning",
"ai",
"generative-ai",
"vision",
"v2v",
"video-generation",
"video-editing",
"google-cloud",
"vertex-ai",
"large-language-models",
"llm",
"video",
"ads"
],
"scripts": {
"build": "tsc",
"start": "npm install && npm run build && node dist/index.js",
"update-app": "npm run build && node dist/update.js",
"deploy-ui": "cd ui && npm run deploy",
"deploy-service": "cd service && bash deploy.sh",
"postinstall": "cd ui && npm install"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"fs-extra": "^11.2.0",
"prompts": "^2.4.2",
"replace": "^1.2.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.12.7"
}
}