-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 921 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 921 Bytes
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
{
"name": "video-streaming-platform",
"private": true,
"workspaces": ["shared", "platform", "hls-server"],
"overrides": {
"express": {
"path-to-regexp": "0.1.13"
},
"lodash": "4.18.1",
"hono": "4.12.12",
"@hono/node-server": "1.19.13",
"defu": "6.1.5",
"effect": "3.20.0",
"anymatch": {
"picomatch": "2.3.2"
},
"micromatch": {
"picomatch": "2.3.2"
},
"readdirp": {
"picomatch": "2.3.2"
},
"tinyglobby": {
"picomatch": "4.0.4"
}
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"hash-password": "npx tsx scripts/hash-password.ts",
"add-vod": "npx tsx scripts/add-vod.ts",
"create-event": "npx tsx scripts/create-event.ts",
"rtmp-ingest": "npx tsx scripts/rtmp-ingest.ts"
}
}