forked from flyerq/webpage-video-capture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 850 Bytes
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
{
"name": "webpage-video-capture",
"version": "0.1.2",
"description": "Capture webpage animation and generate video",
"homepage": "https://github.com/flyerq/webpage-video-capture#readme",
"repository": {
"type": "git",
"url": "https://github.com/flyerq/webpage-video-capture.git"
},
"keywords": [
"webpage",
"video",
"capture",
"recorder"
],
"author": "flyer <flyer@flyerq.com>",
"license": "MIT",
"main": "index.js",
"files": [
"cli.js",
"index.js",
"utils.js"
],
"bin": {
"webpage-video-capture": "cli.js"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "node .",
"test": "node test/index.js"
},
"dependencies": {
"bytes": "^3.1.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"lodash": "^4.17.15",
"timecut": "^0.1.0"
}
}