forked from livekit/client-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.47 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
{
"name": "catalyst-lk-client",
"version": "0.12.2",
"description": "Catalyst version of JavaScript/TypeScript client SDK for LiveKit",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "yarn exec tsc",
"build-docs": "yarn exec typedoc",
"proto": "protoc --plugin=node_modules/ts-proto/protoc-gen-ts_proto --ts_proto_opt=esModuleInterop=true --ts_proto_out=./src/proto --ts_proto_opt=outputClientImpl=false,useOptionals=true -I../protocol ../protocol/livekit_rtc.proto ../protocol/livekit_models.proto",
"sample": "cd example && webpack serve",
"build-sample": "cd example && webpack && cp index.html dist/",
"lint": "yarn exec eslint src",
"test": "jest",
"deploy": "gh-pages -d example/dist"
},
"dependencies": {
"@types/ws": "^7.4.0",
"events": "^3.3.0",
"loglevel": "^1.7.1",
"protobufjs": "^6.10.2",
"ts-debounce": "^3.0.0",
"webrtc-adapter": "^7.7.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@webpack-cli/serve": "^1.5.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.24.2",
"gh-pages": "^3.2.3",
"ts-loader": "^8.1.0",
"ts-proto": "1.83.1",
"typedoc": "^0.20.35",
"typedoc-plugin-no-inherit": "^1.2.0",
"typescript": "^4.2.4",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
}
}