-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 997 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 997 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "subkit",
"version": "0.1.1",
"description": "The subtitles toolkit for converting between SRT, WebVTT, and FCPXML",
"type": "module",
"exports": "./distribution/source/index.js",
"types": "distribution/source",
"engines": {
"node": ">=18"
},
"files": [
"distribution/source"
],
"scripts": {
"prepublishOnly": "node --run build",
"build": "del-cli distribution && tsc",
"dev": "del-cli distribution && tsc --watch",
"pretest": "node --run build",
"test": "xo && c8 ava"
},
"repository": "https://github.com/LitoMore/subkit",
"keywords": [
"subkit",
"subtitles",
"srt",
"vtt",
"fcpxml"
],
"author": "LitoMore",
"license": "MIT",
"dependencies": {
"fast-xml-parser": "^5.3.4"
},
"devDependencies": {
"@ava/typescript": "^6.0.0",
"@sindresorhus/tsconfig": "^8.1.0",
"@types/node": "^25.1.0",
"ava": "^6.4.1",
"c8": "^10.1.3",
"del-cli": "^7.0.0",
"eslint-plugin-import": "^2.32.0",
"typescript": "^5.9.3",
"xo": "^2.0.2"
}
}