-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 KB
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
{
"name": "jmuxer",
"version": "2.1.0",
"description": "jMuxer - a simple javascript mp4 muxer for non-standard streaming communications protocol",
"main": "dist/jmuxer.min.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"server": "cd example && nodemon server.mjs",
"dev": "concurrently --names \"BUILD,SERVER\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run watch\" \"npm run server\"",
"pro": "NODE_ENV=production rollup -c",
"lint": "eslint ./src/"
},
"keywords": [
"h264",
"raw h264",
"aac",
"muxer",
"mse",
"adts",
"player",
"html5",
"mp4",
"rtsp",
"hls",
"jmuxer"
],
"repository": {
"type": "git",
"url": "https://github.com/samirkumardas/jmuxer.git"
},
"author": "Samir Das",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^10.0.1",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"concurrently": "^9.2.1",
"eslint": "^10.0.2",
"express": "^5.1.0",
"express-ws": "^5.0.2",
"globals": "^17.4.0",
"msgpack-lite": "^0.1.26",
"nodemon": "^3.1.10",
"rollup": "^4.59.0"
},
"type": "module"
}