-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 931 Bytes
/
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
{
"name": "@magicfun1241/video2x",
"version": "1.2.1",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node test/main.js",
"start:dev": "cross-env NODE_ENV=development node test/main.js",
"prepare": "npm run build"
},
"keywords": [],
"author": "MagicFun1241",
"license": "ISC",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"ffmpeg-static": "^4.2.7",
"ffprobe-static": "^3.0.0",
"glob": "^7.1.6",
"nanoid": "^3.1.12",
"rimraf": "^3.0.2",
"temp-dir": "^2.0.0",
"waifu2x": "^0.1.5"
},
"devDependencies": {
"@types/ffprobe-static": "^2.0.0",
"@types/glob": "^7.1.3",
"@types/node": "^14.6.2",
"@types/rimraf": "^3.0.0",
"cross-env": "^7.0.2",
"typescript": "^4.0.2"
}
}