-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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
{
"name": "webm-muxer",
"version": "5.0.3",
"description": "WebM multiplexer in pure TypeScript with support for WebCodecs API, video & audio.",
"main": "./build/webm-muxer.js",
"module": "./build/webm-muxer.mjs",
"types": "./build/webm-muxer.d.ts",
"exports": {
"types": "./build/webm-muxer.d.ts",
"import": "./build/webm-muxer.mjs",
"require": "./build/webm-muxer.js"
},
"files": [
"README.md",
"package.json",
"LICENSE",
"build/webm-muxer.js",
"build/webm-muxer.mjs",
"build/webm-muxer.d.ts"
],
"scripts": {
"build": "node build.js",
"watch": "node build.js --watch",
"check": "npx tsc --noEmit --skipLibCheck",
"lint": "npx eslint src demo build"
},
"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",
"subtitles",
"webvtt",
"media",
"webcodecs"
]
}