-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "slideshow-video",
"version": "1.0.2",
"description": "NodeJS and FFmpeg powered automated creation of video slideshows from input images. Fully automatic, no manual editing required.",
"keywords": [
"slideshow",
"slides",
"ffmpeg",
"image",
"typescript",
"video",
"nodejs",
"tiktok-slides",
"photo",
"automatic",
"promise"
],
"homepage": "https://0x464e.github.io/slideshow-video/",
"bugs": {
"url": "https://github.com/0x464e/slideshow-video/issues"
},
"author": "0x464e",
"license": "LGPL-3.0",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"prepare": "tsc",
"typedoc-md": "typedoc --options typedoc-md.json",
"typedoc-md-to-readme": "npm run typedoc-md && node typedoc-md-to-readme.js && shx rm -rf docs-md",
"readme-toc": "markdown-toc -i README.md",
"update-readme": "npm run typedoc-md-to-readme && npm run readme-toc"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node20": "^1.0.2",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/lodash": "^4.14.195",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"axios": "^1.4.0",
"conventional-changelog-eslint": "^4.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"markdown-toc": "^1.2.0",
"prettier": "^3.0.0",
"semantic-release": "^21.0.7",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-plugin-extras": "^2.3.3",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.1.6"
},
"dependencies": {
"@ffprobe-installer/ffprobe": "^2.0.0",
"ffmpeg-static": "^5.1.0",
"fluent-ffmpeg": "^2.1.2",
"image-size": "^1.0.2",
"lodash": "^4.17.21",
"options-defaults": "^2.0.40",
"sharp": "^0.32.1",
"split-string": "^6.1.0",
"tmp-promise": "^3.0.3"
},
"files": [
"dist"
],
"repository": "github:0x464e/slideshow-video"
}