-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 793 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 793 Bytes
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
{
"name": "subkit-cli",
"description": "The subtitles toolkit for converting between SRT, WebVTT, and FCPXML",
"repository": "https://github.com/LitoMore/subkit-cli",
"version": "0.1.4",
"author": "LitoMore",
"license": "MIT",
"type": "module",
"preferGlobal": true,
"bin": {
"subkit": "./distribution/cli.js"
},
"files": [
"distribution"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "del-cli distribution && tsc && chmod +x distribution/cli.js",
"test": "xo"
},
"dependencies": {
"chalk": "^5.4.1",
"meow": "^13.2.0",
"subkit": "^0.1.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^7.0.0",
"@types/node": "^22.13.8",
"del-cli": "^6.0.0",
"typescript": "^5.8.2",
"xo": "^0.60.0"
}
}