-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.71 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
{
"name": "oneencode",
"version": "0.7.0",
"private": true,
"description": "One-encode-to-many-transcode local restreaming pipeline",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"probe:nvenc": "tsx src/nvenc/probe.ts",
"bench:baseline": "tsx scripts/benchBaseline.ts",
"bench:oneencode": "tsx scripts/benchOneEncode.ts",
"gen:testsource": "tsx scripts/genTestSource.ts",
"verify:jitter-fix": "tsx scripts/jitterNoRtmpHopTest.ts",
"investigate:jitter-rtmp-mechanism": "tsx scripts/jitterRtmpMechanismTest.ts",
"investigate:jitter-multibranch": "tsx scripts/jitterMultiBranchTest.ts",
"investigate:jitter-mediamtx-relay": "tsx scripts/jitterMediaMtxRelayTest.ts",
"investigate:jitter-stdio-pipe": "tsx scripts/jitterStdioPipeTest.ts",
"investigate:jitter-smoothing-relay": "tsx scripts/jitterSmoothingRelayTest.ts",
"investigate:jitter-smoothing-relay-stress": "tsx scripts/jitterSmoothingRelayStressTest.ts",
"investigate:jitter-threadqueue": "tsx scripts/jitterThreadQueueTest.ts",
"web:install": "cd web && npm install",
"web:build": "cd web && npm run build",
"web:dev": "cd web && npm run dev",
"package:win": "pwsh -File scripts/package-win.ps1"
},
"dependencies": {
"express": "^5.2.1",
"js-yaml": "^4.1.0",
"ws": "^8.21.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@types/ws": "^8.18.1",
"esbuild": "^0.28.2",
"postject": "^1.0.0-alpha.6",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
}
}