-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "waifu2x",
"version": "1.4.7",
"description": "2x upscaling of images with waifu2x",
"main": "dist/waifu2x.js",
"types": "dist/waifu2x.d.ts",
"scripts": {
"start": "tsc && node dist/start.js",
"prepublishOnly": "tsc"
},
"keywords": [
"waifu2x",
"anime",
"image",
"upscaling"
],
"repository": {
"type": "git",
"url": "https://github.com/Moebits/waifu2x"
},
"author": "Moebits",
"license": "MIT",
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.16",
"@types/get-pixels": "^3.3.2",
"@types/gif-encoder": "^0.7.1",
"@types/node": "^12.11.6",
"@types/omggif": "^1.0.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.54",
"@react-pdf/pdfkit": "^3.1.6",
"fluent-ffmpeg": "^2.1.2",
"get-pixels": "^3.3.2",
"gif-encoder": "^0.7.2",
"gif-frames": "github:Moebits/gif-frames#no-cumulative",
"image-size": "^1.0.2",
"is-url": "^1.2.4",
"pdfjs-dist": "github:Moebits/pdfjs-dist",
"rife-fps": "^0.0.9"
}
}