-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "gen-short-vid",
"version": "0.0.7",
"description": "快速生成短视频",
"keywords": [
"video",
"ffmpeg",
"nodejs",
"cli",
"generateVideo"
],
"license": "ISC",
"author": "",
"type": "module",
"main": "dist/main.js",
"types": "types/index.d.ts",
"bin": {
"gen-short-vid": "bin/index.js"
},
"scripts": {
"test": "run-s test:clean test:run",
"test:run": "vitest run",
"test:clean": "rimraf test/.temp",
"dev": "tsc -p tsconfig.build.json && (concurrently \"tsc -p tsconfig.build.json -w\" \"tsc-alias -p tsconfig.build.json -w\")",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"clean": "rimraf dist types",
"sort-package-json": "npx sort-package-json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"np": "np",
"release": "run-s clean build np"
},
"dependencies": {
"cac": "^6.7.14",
"ffmpeg-static": "^5.2.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"log4js": "^6.9.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.1",
"@types/fluent-ffmpeg": "^2.1.25",
"@types/node": "^22.5.0",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"eslint-plugin-format": "^0.1.2",
"np": "^10.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18.0.0"
},
"np": {
"tests": true,
"2fa": false
}
}