-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.92 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.92 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
{
"name": "chaptertool",
"version": "0.7.2",
"description": "Manage and generate chapters for podcasts and other media via cli or web",
"keywords": [
"podcast",
"ffmpeg",
"chapters",
"youtube",
"mkvmerge",
"matroska",
"webvtt",
"pyscenedetect",
"vorbis",
"apple-chapters",
"podlove",
"podcast-chapters",
"edl",
"hls",
"scenecut"
],
"type": "module",
"main": "chaptertool.js",
"bin": "chaptertool.js",
"homepage": "https://github.com/Mtillmann/chaptertool",
"scripts": {
"sass-dev": "sass --watch src/scss:static",
"build": "rollup -c && terser static/app.js --compress ecma=2021 -o static/app.js && sass --style=compressed src/scss:static && node scripts/writeversion.js",
"createIndexHTML": "node scripts/empuggen.js",
"dev": "rollup -c -w",
"lint": "eslint",
"watch": "concurrently \"npm run sass-dev\" \"npm run dev\" \"nodemon --watch src/Server.js --exec node chaptertool.js serve\""
},
"author": "Martin Tillmann<mtillmann@gmail.com>",
"bugs": {
"url": "https://github.com/Mtillmann/chaptertool/issues"
},
"files": [
"src",
"scripts",
"static"
],
"license": "MIT",
"dependencies": {
"@mtillmann/chapters": "^0.2.2",
"@zip.js/zip.js": "^2.7.32",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.3",
"dotenv": "^16.3.2",
"escape-string-regexp": "^5.0.0",
"express": "^4.18.2",
"filenamify": "^6.0.0",
"jsdom": "^24.0.0",
"node-fetch-native": "^1.6.1",
"pug": "^3.0.2",
"shepherd.js": "^11.2.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"alpinejs": "^3.13.4",
"concurrently": "^8.2.2",
"neostandard": "^0.12.1",
"nodemon": "^3.0.3",
"rollup": "^4.9.6",
"rollup-plugin-copy": "^3.5.0",
"sass": "^1.97.3",
"terser": "^5.27.0"
}
}