forked from software-mansion/smelter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.48 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "live_compositor_demos",
"version": "1.0.0",
"description": "Demos for LiveCompositor - media server for low-latency video and audio mixing/composing",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"watch": "tsc --noEmit --watch",
"ts": "ts-node --transpile-only",
"1-videoconferencing": "npm run ts ./1-videoconferencing/index.ts",
"2-tv_broadcast": "npm run ts ./2-tv_broadcast/index.ts",
"3-live_stream": "npm run ts ./3-live_stream/index.ts",
"generate-types": "ts-node ./utils/generate_types.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/membraneframework/live_compositor.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/membraneframework/live_compositor/issues"
},
"homepage": "https://github.com/membraneframework/live_compositor#readme",
"dependencies": {
"@types/fs-extra": "^11.0.2",
"@types/node": "^20.12.11",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"chalk": "^4.1.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"fs-extra": "^11.1.1",
"json-schema-to-typescript": "^14.0.4",
"node-fetch": "^2.7.0",
"node-popup": "^0.1.14",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}