-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
52
53
54
55
56
{
"name": "@kixelated/hang",
"type": "module",
"version": "0.4.0",
"description": "Media over QUIC library",
"license": "(MIT OR Apache-2.0)",
"repository": "github:kixelated/moq",
"exports": {
".": "./src/index.ts",
"./publish": "./src/publish/index.ts",
"./publish/element": "./src/publish/element.ts",
"./watch": "./src/watch/index.ts",
"./watch/element": "./src/watch/element.ts",
"./meet": "./src/meet/index.ts",
"./meet/element": "./src/meet/element.ts",
"./catalog": "./src/catalog/index.ts",
"./container": "./src/container/index.ts",
"./support": "./src/support/index.ts",
"./support/element": "./src/support/element.ts",
"./connection": "./src/connection.ts",
"./preview": "./src/preview/index.ts"
},
"sideEffects": [
"./src/publish/element.ts",
"./src/watch/element.ts",
"./src/support/element.ts",
"./src/meet/element.ts"
],
"files": [
"./src",
"README.md",
"tsconfig.json"
],
"scripts": {
"build": "rimraf dist && tsc -b && tsx ../scripts/package.ts",
"check": "tsc --noEmit",
"release": "tsx ../scripts/release.ts",
"test": "vitest"
},
"dependencies": {
"@huggingface/transformers": "^3.7.2",
"@kixelated/moq": "workspace:^",
"@kixelated/signals": "workspace:^",
"@libav.js/variant-opus": "^6.8.8",
"async-mutex": "^0.5.0",
"comlink": "^4.4.2",
"libavjs-webcodecs-polyfill": "^0.5.5",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/audioworklet": "^0.0.77",
"@typescript/lib-dom": "npm:@types/web@^0.0.241",
"fast-glob": "^3.3.3",
"vitest": "^3.2.4"
}
}