-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
{
"name": "@drovp/upscale",
"version": "4.0.1",
"description": "Upscale images and videos with Real-ESRGAN or waifu2x neural network.",
"main": "dist/index.js",
"keywords": [
"drovpplugin",
"image",
"video",
"upscale",
"esrgan",
"realesrgan",
"real-esrgan",
"waifu2x"
],
"author": "tomasklaen",
"license": "MIT",
"homepage": "https://github.com/drovp/upscale",
"bugs": "https://github.com/drovp/upscale/issues",
"repository": "github:drovp/upscale",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"*.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf dist",
"start": "npm-run-all clean watch",
"test": "tsc -p . --noEmit",
"preversion": "npm-run-all clean build",
"git-push": "git push",
"npm-publish": "npm publish",
"postversion": "npm-run-all git-push npm-publish"
},
"dependencies": {
"@drovp/save-as-path": "^3.1.0",
"@drovp/types": "^4.11.0",
"ffprobe-normalized": "^2.2.4"
},
"devDependencies": {
"@types/node": "^18.11.9",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}