-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
45
46
47
48
49
50
51
52
53
{
"name": "sora2cli",
"version": "1.0.0",
"description": "A powerful command-line interface for OpenAI's Sora 2 video generation API",
"type": "module",
"main": "build/index.js",
"bin": {
"sora": "./build/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node build/index.js",
"dev": "tsc && node build/index.js"
},
"keywords": [
"sora",
"sora2",
"openai",
"video-generation",
"cli",
"ai",
"video",
"artificial-intelligence",
"prompt-enhancement",
"interactive-cli"
],
"author": "Roberto Moreno",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robertoamoreno/sora2cli.git"
},
"bugs": {
"url": "https://github.com/robertoamoreno/sora2cli/issues"
},
"homepage": "https://github.com/robertoamoreno/sora2cli#readme",
"dependencies": {
"axios": "^1.7.2",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"fluent-ffmpeg": "^2.1.3",
"inquirer": "^9.2.15",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.19",
"typescript": "^5.3.3"
}
}