-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.05 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.05 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "capcut-cli",
"version": "0.4.0",
"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",
"templates",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node -e \"import('node:fs').then(fs=>fs.copyFileSync('src/enums.json','dist/enums.json'))\"",
"prepublishOnly": "npm run build",
"dev": "node --import tsx src/index.ts",
"extract-enums": "python3 scripts/extract-enums.py",
"test": "npm run build && node --test --test-reporter=spec test/*.test.mjs",
"test:fast": "node --test --test-reporter=spec test/*.test.mjs",
"lint": "biome check src/ test/",
"lint:fix": "biome check --write src/ test/",
"format": "biome format --write src/ test/",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.ts": [
"biome check --write --no-errors-on-unmatched"
],
"test/**/*.mjs": [
"biome check --write --no-errors-on-unmatched"
]
},
"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": {
"@biomejs/biome": "^2.4.15",
"@types/node": "^25.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
}
}