forked from livekit/node-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.54 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-server-sdk",
"version": "1.0.0",
"description": "Server-side SDK for LiveKit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:livekit/server-sdk-js.git",
"author": "David Zhao <david@davidzhao.com>",
"license": "Apache 2.0",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"build-docs": "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=useOptionals=true --ts_proto_opt=outputClientImpl=false -I./protocol ./protocol/livekit_egress.proto ./protocol/livekit_room.proto ./protocol/livekit_recording.proto ./protocol/livekit_webhook.proto",
"lint": "eslint .",
"format": "prettier --write src",
"format:check": "prettier --check src",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.0",
"camelcase-keys": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"protobufjs": "^6.10.2"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.24.0",
"jest": "^26.6.3",
"prettier": "^2.6.2",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"ts-proto": "^1.110.1",
"typedoc": "^0.22.13",
"typescript": "4.2.x",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
}
}