-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
executable file
·81 lines (81 loc) · 1.95 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
{
"name": "canvas-record",
"version": "5.1.0",
"description": "Record a video in the browser or directly on the File System from a canvas (2D/WebGL/WebGPU) as MP4, WebM, MKV, GIF, PNG/JPG Sequence using WebCodecs and wasm when available.",
"keywords": [
"canvas",
"record",
"video",
"recorder",
"capture",
"mp4",
"webm",
"mkv",
"gif",
"sequence",
"framesequence",
"media-recorder",
"ffmpeg",
"h264"
],
"homepage": "https://github.com/dmnsgn/canvas-record",
"bugs": "https://github.com/dmnsgn/canvas-record/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/dmnsgn/canvas-record.git"
},
"funding": [
{
"type": "individual",
"url": "https://paypal.me/dmnsgn"
},
{
"type": "individual",
"url": "https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3"
}
],
"license": "MIT",
"author": "Damien Seguin (https://github.com/dmnsgn)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
}
},
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npx snowdev build",
"deps": "npx snowdev install",
"dev": "npx snowdev dev"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.7",
"@ffmpeg/util": "^0.12.1",
"canvas-screenshot": "^4.2.2",
"gifenc": "^1.0.3",
"h264-mp4-encoder": "^1.0.12",
"media-codecs": "^2.0.2",
"mp4-muxer": "^4.3.3",
"webm-muxer": "^4.0.1"
},
"devDependencies": {
"@web/rollup-plugin-import-meta-assets": "^2.2.1",
"canvas-context": "^3.3.0",
"es-module-shims": "^1.10.0",
"mp4-wasm": "^1.0.6",
"rollup": "^4.18.0",
"tweakpane": "^4.0.4"
},
"optionalDependencies": {
"@ffmpeg/core": "^0.12.3",
"@ffmpeg/core-mt": "^0.12.3"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.2.x"
}
}