forked from tnfe/FFCreator
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ffcreator",
"version": "6.7.3",
"description": "FFCreator is a lightweight and flexible short video production library",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint ./lib --ext .js",
"travis": "npm run lint",
"mixin": "npx webpack --config mixin.config.js --node-env development --mode none --watch",
"mixin-build": "npx webpack --config mixin.config.js --node-env production --mode none",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"examples": "node ./examples/",
"doc": "docsify serve ./docs",
"test-typings": "tsc -b types/tsconfig.json && tsc -b types/test/tsconfig.json",
"install_arm64": "build-opencv --version 4.5.4 --flag=\"-DCMAKE_SYSTEM_PROCESSOR=arm64 -DCMAKE_OSX_ARCHITECTURES=arm64\" rebuild",
"do-install": "build-opencv rebuild",
"do-install-homebrew": "build-opencv --incDir /opt/homebrew/Cellar/opencv/4.5.5_2/include/opencv4/ --libDir /opt/homebrew/Cellar/opencv/4.5.5_2/lib/ --binDir=/opt/homebrew/Cellar/opencv/4.5.5_2/bin/ --nobuild rebuild",
"do-ubuntu-install": "build-opencv --incDir /usr/include/opencv --libDir /usr/lib/x86_64-linux-gnu/ --binDir=/usr/bin/ --nobuild rebuild"
},
"repository": "https://github.com/tnfe/FFCreator",
"homepage": "https://tnfe.github.io/FFCreator",
"keywords": [
"video",
"nodejs",
"video_production"
],
"license": "MIT",
"dependencies": {
"@koa/router": "^11.0.1",
"@u4/opencv4nodejs": "^6.2.0",
"@xmldom/xmldom": "^0.8.1",
"browser-or-node": "^1.3.0",
"colors": "^1.4.0",
"echarts": "5.1.2",
"ejs": "^3.1.8",
"eventemitter3": "^4.0.7",
"ffmpeg-probe": "^1.0.6",
"fluent-ffmpeg": "^2.1.2",
"fourier-transform": "^1.1.2",
"fs-extra": "^9.0.1",
"get-pixels": "git+https://github.com/miravideo/get-pixels",
"gl-buffer": "^2.1.2",
"gl-texture2d": "^2.1.0",
"gl-transitions": "^1.43.0",
"html2canvas": "^1.4.1",
"js-easing-functions": "^1.0.3",
"jsmediatags": "^3.9.7",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"left-pad": "^1.3.0",
"lodash": "^4.17.20",
"lottie-nodejs": "^1.1.5",
"md5": "^2.3.0",
"minimist": "^1.2.6",
"mtempy": "^1.0.0",
"ndarray": "^1.0.19",
"node-fetch": "^3.2.3",
"node-html-to-image": "^3.2.4",
"progress-stream": "^2.0.0",
"rmfr": "^2.0.0",
"siz": "^1.2.2",
"soundtouchjs": "^0.1.30",
"stackblur-canvas": "^2.5.0",
"web-audio-api": "^0.2.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"inquirer": "^7.3.3",
"jest": "^26.5.2",
"keypress": "^0.2.1",
"typescript": "^4.4.2"
},
"files": [
"dist",
"lib",
"types"
]
}