-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.5 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
74
75
76
77
{
"name": "@drovp/encode",
"version": "7.1.0",
"description": "Encode video, audio, and images into common formats.",
"homepage": "https://github.com/drovp/encode",
"bugs": "https://github.com/drovp/encode/issues",
"repository": "github:drovp/encode",
"main": "dist/index.js",
"keywords": [
"drovpplugin",
"encode",
"convert",
"ffmpeg",
"mp4",
"mkv",
"webm",
"jpg",
"webp",
"mp3",
"ogg",
"opus",
"x264",
"h264",
"x265",
"h265",
"hvec",
"vp8",
"vp9",
"av1"
],
"author": "tomasklaen",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
".md"
],
"engines": {
"drovp": ">=0.5.0"
},
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"clean": "gulp clean",
"start": "gulp",
"test": "tsc -p . --noEmit",
"preversion": "npm-run-all build",
"git-push": "git push",
"npm-publish": "npm publish",
"postversion": "npm-run-all git-push npm-publish"
},
"devDependencies": {
"@drovp/save-as-path": "^3.1.0",
"@drovp/types": "^5.3.0",
"@drovp/utils": "^2.1.2",
"@oddbird/blend": "^0.2.4",
"@types/sharp": "^0.31.1",
"colorjs.io": "^0.4.5",
"ffprobe-normalized": "^2.2.4",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.1.0",
"gulp-postcss": "^9.0.1",
"gulp-sass-glob": "^1.1.0",
"npm-run-all": "^4.1.5",
"postcss-preset-env": "^9.3.0",
"postcss-prune-var": "^1.1.1",
"preact": "^10.19.2",
"tslib": "^2.6.2",
"type-fest": "^4.8.2",
"typescript": "^5.3.2"
},
"dependencies": {
"sharp": "^0.33.0"
}
}