This repository has been archived by the owner on Jan 19, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
90 lines (90 loc) · 2.59 KB
/
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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "auto-shorts",
"version": "0.2.0",
"description": "Generate short videos with the help of AI.",
"author": "Shafil Alam",
"license": "MIT",
"keywords": [
"ai",
"video",
"ffmpeg",
"shorts",
"tiktok"
],
"repository": "github:alamshafil/auto-shorts",
"homepage": "https://alamshafil.github.io/auto-shorts",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"workspaces": [
"packages/ffcreator",
"packages/inkpaint"
],
"scripts": {
"start": "tsc && node dist/cli.js",
"start-server": "tsc && node dist/cli.js --server",
"start-ui-dev": "cd ui && npm run dev",
"start-ui": "cd ui && npm run build && npm run start",
"install-ui-deps": "cd ui && npm install",
"start-all": "concurrently \"npm run start-server\" \"npm run start-ui\"",
"start-all-dev": "concurrently \"npm run start-server\" \"npm run start-ui-dev\"",
"build": "tsc",
"build-inkpaint": "npm -w packages/inkpaint run lib",
"lint": "eslint .",
"doc": "typedoc --out typedoc --entryPointStrategy expand ./src",
"test": "jest",
"postinstall": "npm run build-inkpaint"
},
"bin": {
"auto-shorts": "dist/cli.js"
},
"dependencies": {
"@google/generative-ai": "^0.19.0",
"@inquirer/prompts": "^5.3.2",
"axios": "^1.7.2",
"blessed": "^0.1.81",
"canvas": "^2.11.2",
"cli-progress": "^3.12.0",
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.3",
"concurrently": "^9.0.1",
"console-error": "^0.0.4",
"console-info": "^0.0.5",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"elevenlabs": "^0.16.0",
"express": "^4.21.0",
"extract-zip": "^2.0.1",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"gl": "^8.0.2",
"node-pexels": "^2.0.1",
"node-wav": "^0.0.2",
"ollama": "^0.5.2",
"openai": "^4.63.0",
"puppeteer": "^22.12.1",
"say": "^0.16.0",
"smart-whisper": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.7.0",
"@jest/globals": "^29.7.0",
"@types/cli-progress": "^3.11.6",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node-wav": "^0.0.3",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
}
}