-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"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",
"tf-deploy-service": "cd terraform && bash pre_deploy.sh && terraform init && terraform apply -auto-approve && terraform init -migrate-state",
"postinstall": "cd ui && npm install"
},
"engines": {
"node": ">=20"
},
"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"
}
}