-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.31 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.31 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
55
56
57
58
59
60
61
{
"name": "capcut-cli",
"version": "0.2.1",
"description": "CLI to create and edit CapCut projects — build drafts from scratch, add video/audio/text, subtitles, timing, speed, volume, templates, cut long-form to shorts. No API needed.",
"type": "module",
"bin": {
"capcut": "dist/index.js",
"capcut-cli": "dist/index.js"
},
"files": [
"dist",
"examples",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"dev": "node --import tsx src/index.ts"
},
"keywords": [
"capcut",
"capcut-editor",
"capcut-draft",
"capcut-srt",
"capcut-subtitles",
"capcut-json",
"capcut-template",
"capcut-automation",
"capcut-api",
"capcut-project",
"jianying",
"draft_content",
"draft_info",
"srt-export",
"subtitle-editor",
"video-to-shorts",
"long-video-to-shorts",
"batch-edit",
"video-editing",
"video-automation",
"ai-video-editor",
"mcp",
"cli"
],
"author": "René Zander",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/renezander030/capcut-cli.git"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
}
}