-
Notifications
You must be signed in to change notification settings - Fork 405
/
package.json
executable file
·69 lines (69 loc) · 1.92 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
{
"name": "ffcreator",
"version": "7.5.8",
"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",
"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"
},
"repository": "https://github.com/tnfe/FFCreator",
"homepage": "https://tnfe.github.io/FFCreator",
"keywords": [
"video",
"nodejs",
"video_production"
],
"license": "MIT",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"ffprobe-installer": "^2.1.5",
"@tweenjs/tween.js": "18.5.0",
"@xsstomy/subsrt": "^1.0.0",
"browser-or-node": "^1.3.0",
"colors": "^1.4.0",
"echarts": "5.1.2",
"eventemitter3": "^4.0.7",
"ffmpeg-probe": "^1.0.6",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^9.0.1",
"get-pixels": "^3.3.2",
"gl-buffer": "^2.1.2",
"gl-texture2d": "^2.1.0",
"gl-transition": "^1.13.0",
"gl-transitions": "^1.43.0",
"inkpaint": "^2.7.1",
"left-pad": "^1.3.0",
"lodash": "^4.17.20",
"lottie-nodejs": "^1.1.5",
"mtempy": "^1.0.0",
"ndarray": "^1.0.19",
"rmfr": "^2.0.0",
"siz": "^1.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"
]
}