-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.25 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
54
{
"name": "sora2-cli",
"version": "1.0.0",
"description": "Professional CLI for generating AI videos using OpenAI's Sora 2 API with cinematography-focused prompts and GPT-enhanced prompt builder",
"main": "dist/index.js",
"bin": {
"sora2": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"sora",
"sora-2",
"openai",
"video",
"generation",
"ai",
"cli",
"cinematography",
"prompt",
"video-generation",
"ai-video",
"text-to-video"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/sora2-cli.git"
},
"bugs": {
"url": "https://github.com/yourusername/sora2-cli/issues"
},
"homepage": "https://github.com/yourusername/sora2-cli#readme",
"dependencies": {
"@types/node": "^24.9.2",
"axios": "^1.13.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"inquirer": "^12.10.0",
"js-yaml": "^4.1.0",
"ora": "^9.0.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/js-yaml": "^4.0.9"
}
}