-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "@livekit/protocol",
"version": "1.45.3",
"description": "",
"type": "module",
"require": "dist/index.cjs",
"files": [
"src",
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"scripts": {
"generate:proto": "mkdir -p src/gen && protoc --es_out src/gen --es_opt target=dts+js -I=../../protobufs ../../protobufs/livekit_*.proto ../../protobufs/agent/livekit_*.proto",
"generate:version": "genversion --esm --semi src/gen/version.js",
"build": "pnpm generate:version && pnpm generate:proto && unbuild"
},
"keywords": [],
"author": "LiveKit",
"license": "Apache-2.0",
"devDependencies": {
"@bufbuild/protoc-gen-es": "^1.10.0",
"genversion": "^3.2.0",
"typescript": "5.9.2",
"unbuild": "^2.0.0"
},
"dependencies": {
"@bufbuild/protobuf": "^1.10.0"
},
"repository": {
"url": "https://github.com/livekit/protocol"
}
}