-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 976 Bytes
/
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
{
"name": "live-video-streamer",
"description": "Ultra low-latency live video streaming over CDN",
"repository": "[email protected]:spectral-ai/engineering/media/live-video-streamer.git",
"author": "Spectral Compute",
"license": "Custom",
"private": true,
"workspaces": [
"client",
"common",
"demo-client",
"dev-client",
"settings-ui"
],
"scripts": {
"bundle": "yarn workspaces foreach run bundle",
"bundle-dev": "yarn workspaces foreach run bundle-dev",
"lint": "yarn workspaces foreach -p run lint",
"clean": "yarn workspaces foreach -p run clean && rm -rf .yarn/cache .yarn/install-state.gz node_modules",
"docs": "rm -rf docs/dist && docs/build.sh docs/dist",
"test": "(cd common && yarn test) && (cd client && yarn test)"
},
"packageManager": "[email protected]",
"devDependencies": {
"ts-patch": "^2.0.1",
"typedoc": "^0.23.28",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "=4.7.3"
}
}