-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "short-video",
"version": "1.0.0",
"description": "短视频切割",
"keywords": [],
"author": "",
"main": "dist/main.js",
"scripts": {
"dev": "esno src/index.ts",
"build": "vite build",
"start": "node dist/main.js",
"pkg": "pnpm build && pkg ."
},
"bin": "dist/main.js",
"pkg": {
"assets": [
"dist/**/*",
"node_modules/@ffmpeg-installer/**/*",
"node_modules/@ffprobe-installer/**/*",
"node_modules/fluent-ffmpeg/**/*"
],
"targets": [
"node16-win-x64"
],
"outputPath": ".output"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^1.4.1",
"execa": "^6.1.0",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^10.1.0",
"get-video-duration": "^4.1.0",
"js-yaml": "^4.1.0",
"listr2": "^5.0.2",
"lodash-es": "^4.17.21",
"minimist": "^1.2.6",
"ora": "^6.1.2",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.20",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/lodash-es": "^4.17.6",
"@types/minimist": "^1.2.2",
"@types/node": "^18.6.3",
"@types/prompts": "^2.0.14",
"enquirer": "^2.3.6",
"esno": "^0.16.3",
"pkg": "^5.8.0",
"typescript": "^4.7.4",
"vite": "^3.0.5",
"vite-plugin-esmodule": "^1.4.2"
}
}