-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.5 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
{
"name": "pellicola",
"description": "🎥 Generate video files from <canvas> animations in Node.js",
"version": "0.13.0",
"author": "Chris Swithinbank <[email protected]> (http://chrisswithinbank.net/)",
"license": "GPL-3.0",
"main": "lib/pellicola.js",
"types": "types/pellicola.d.ts",
"files": [
"lib",
"types"
],
"engines": {
"node": ">=10"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64"
],
"scripts": {
"prerelease": "npm t && npm run build-types",
"release": "standard-version -s",
"build-types": "tsc",
"pretest": "standard",
"test": "nyc --reporter=lcov --reporter=text ava"
},
"devDependencies": {
"ava": "^3.15.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"ninos": "^3.0.0",
"nyc": "^15.1.0",
"standard": "^17.0.0",
"standard-version": "^9.3.0",
"typescript": "^5.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/delucis/pellicola.git"
},
"bugs": "https://github.com/delucis/pellicola/issues",
"homepage": "https://npmjs.com/package/pellicola",
"keywords": [
"canvas",
"animation",
"video",
"ffmpeg",
"node-canvas"
],
"dependencies": {
"aproba": "^2.0.0",
"canvas": "^2.11.0",
"del": "^6.1.1",
"ffmpeg-static": "^5.0.2",
"ora": "^5.4.1",
"p-queue": "^6.6.2",
"tempy": "^1.0.1"
}
}