-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mkdirp": "^0.5.1",
"puppeteer": "^10.1.0",
"tkt": "^2.0.0"
},
"files": [
"render.js",
"lib"
],
"name": "html5-animation-video-renderer",
"description": "A Node.js script that renders an HTML5-based animation into a high-quality video. It renders the animation frame-by-frame using Puppeteer without using screen capturing, so no frameskips!",
"version": "0.1.0",
"main": "render.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"devDependencies": {
"http-server": "^0.11.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtinth/html5-animation-video-renderer.git"
},
"author": "Thai Pangsakulyanont <[email protected]> (http://dt.in.th/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtinth/html5-animation-video-renderer/issues"
},
"homepage": "https://github.com/dtinth/html5-animation-video-renderer#readme"
}