-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
69 lines (66 loc) · 1.95 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@kixelated/moq",
"version": "0.0.1",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./video": {
"types": "./dist/element/video.d.ts",
"import": "./dist/element/video.js"
},
"./publish": {
"types": "./dist/element/publish.d.ts",
"import": "./dist/element/publish.js"
},
"./watch": {
"types": "./dist/element/watch.d.ts",
"import": "./dist/element/watch.js"
}
},
"sideEffects": [
"./dist/element/video.js",
"./dist/element/publish.js",
"./dist/element/watch.js",
"./dist/rust.js",
"./dist/snippets/*"
],
"files": ["dist", "README.md", "LICENSE*"],
"scripts": {
"all": "npm-run-all --print-label --parallel --race relay bbb web",
"relay": "./dev/relay",
"bbb": "./dev/bbb",
"gst": "./dev/gst",
"clock": "./dev/clock",
"web": "webpack serve",
"cluster": "npm-run-all --print-label --parallel --race relay cluster:leaf cluster:bbb web",
"cluster:leaf": "PORT=4444 ./dev/relay --cluster-root localhost:4443",
"cluster:bbb": "PORT=4444 ./dev/bbb",
"check": "biome check && cargo check --all",
"fix": "biome check --write && cargo clippy --all --fix --allow-dirty --allow-staged && cargo fmt --all",
"fmt": "biome format --write && cargo fmt --all",
"build": "wasm-pack build --out-dir ../dist moq-web --release --scope kixelated --out-name rust && rm dist/.gitignore dist/README.md dist/package.json && tsc && tsc-alias"
},
"dependencies": {
"comlink": "^4.4.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/dom-mediacapture-transform": "^0.1.10",
"@wasm-tool/wasm-pack-plugin": "^1.5.0",
"html-webpack-plugin": "^5.6.0",
"npm-run-all": "^4.1.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.3",
"wasm-pack": "^0.13.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}