-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "mp4-muxer",
"version": "5.1.5",
"description": "MP4 multiplexer in pure TypeScript with support for WebCodecs API, video & audio.",
"main": "./build/mp4-muxer.js",
"module": "./build/mp4-muxer.mjs",
"types": "./build/mp4-muxer.d.ts",
"exports": {
"types": "./build/mp4-muxer.d.ts",
"import": "./build/mp4-muxer.mjs",
"require": "./build/mp4-muxer.js"
},
"files": [
"README.md",
"package.json",
"LICENSE",
"build/mp4-muxer.js",
"build/mp4-muxer.mjs",
"build/mp4-muxer.d.ts"
],
"scripts": {
"build": "node build.mjs",
"watch": "node build.mjs --watch",
"check": "npx tsc --noEmit --skipLibCheck",
"lint": "npx eslint src demo build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilagy/mp4-muxer.git"
},
"author": "Vanilagy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilagy/mp4-muxer/issues"
},
"homepage": "https://github.com/Vanilagy/mp4-muxer#readme",
"dependencies": {
"@types/dom-webcodecs": "^0.1.6",
"@types/wicg-file-system-access": "^2020.9.5"
},
"devDependencies": {
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"esbuild": "^0.17.11",
"eslint": "^8.36.0",
"typescript": "^4.9.5"
},
"keywords": [
"mp4",
"fmp4",
"muxer",
"muxing",
"multiplexer",
"video",
"audio",
"media",
"webcodecs"
]
}