forked from Vanilagy/webm-muxer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "webm-muxer",
"version": "2.1.2",
"description": "WebM multiplexer in pure TypeScript with support for WebCodecs API, video & audio.",
"main": "./build/webm-muxer.js",
"types": "./build/webm-muxer.d.ts",
"scripts": {
"watch": "node build.js",
"check": "npx tsc --noEmit --skipLibCheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilagy/webm-muxer.git"
},
"author": "Vanilagy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilagy/webm-muxer/issues"
},
"homepage": "https://github.com/Vanilagy/webm-muxer#readme",
"dependencies": {
"@types/dom-webcodecs": "^0.1.4",
"@types/wicg-file-system-access": "^2020.9.5"
},
"devDependencies": {
"@types/node": "^18.11.3",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"esbuild": "^0.15.12",
"eslint": "^8.32.0",
"typescript": "^4.8.4"
},
"keywords": [
"webm",
"muxer",
"muxing",
"multiplexer",
"video",
"audio",
"media",
"webcodecs"
]
}