-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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
51
{
"name": "streamdelay",
"version": "1.0.0",
"description": "A delay + dump button for live streams, allowing screening and redaction of explicit content.",
"main": "src/index.ts",
"type": "module",
"dependencies": {
"@fastify/websocket": "^10.0.0",
"@iarna/toml": "^2.2.5",
"@sinclair/typebox": "^0.32.0",
"fastify": "^4.0.0",
"gst-kit": "github:chromakode/gst-kit#build-ts-on-install-bigint",
"prettier-plugin-organize-imports": "^4.1.0",
"ws": "^8.0.0",
"xstate": "^5.20.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@tsconfig/node-ts": "^23.6.1",
"@tsconfig/node22": "^22.0.2",
"@tsconfig/recommended": "^1.0.10",
"@types/node": "^22.0.0",
"@types/ws": "^8.0.0",
"@types/yargs": "^17.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"scripts": {
"start": "tsx src/index.ts",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chromakode/streamdelay.git"
},
"keywords": [
"stream",
"srt",
"rtmp",
"delay",
"censor",
"bleep",
"gstreamer"
],
"author": "Max Goodhart <c@chromakode.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chromakode/streamdelay/issues"
},
"homepage": "https://github.com/chromakode/streamdelay#readme"
}