-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "video-splitter",
"type": "commonjs",
"version": "1.1.0",
"main": "./bin/index.js",
"preferGlobal": true,
"description": "A command line tool for cutting videos into segments of a specified duration.",
"homepage": "https://github.com/kyng-cytro/v-splitter#readme",
"bin": {
"v-split": "./bin/index.js",
"v-splitter": "./bin/index.js",
"video-splitter": "./bin/index.js"
},
"scripts": {
"dev": "tsc -w",
"ci": "pnpm run build",
"build": "tsc",
"lint": "tsc",
"release": "pnpm run ci && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/kyng-cytro/v-splitter"
},
"author": {
"name": "John Dibashi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/kyng-cytro/v-splitter"
},
"keywords": [
"commander",
"cli-tool",
"ffmpeg"
],
"license": "MIT",
"dependencies": {
"@changesets/cli": "^2.27.1",
"@types/fluent-ffmpeg": "^2.1.24",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"ffmpeg-static": "^5.2.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.2",
"i": "^0.3.7",
"nanospinner": "^1.1.0",
"npm": "^10.2.5"
}
}