-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 993 Bytes
/
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
{
"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": "npm run build",
"build": "del-cli distribution && tsc",
"dev": "del-cli distribution && tsc --watch",
"pretest": "npm 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.0.8"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@sindresorhus/tsconfig": "^7.0.0",
"@types/node": "^22.13.8",
"ava": "^6.2.0",
"c8": "^10.1.3",
"del-cli": "^6.0.0",
"eslint-plugin-import": "^2.31.0",
"typescript": "^5.8.2",
"xo": "^0.60.0"
}
}