forked from livekit/client-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.58 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@dtelecom/livekit-client",
"version": "1.12.24",
"description": "JavaScript/TypeScript client SDK for LiveKit",
"main": "./dist/livekit-client.umd.js",
"unpkg": "./dist/livekit-client.umd.js",
"module": "./dist/livekit-client.esm.mjs",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/livekit-client.esm.mjs",
"require": "./dist/livekit-client.umd.js"
},
"./e2ee-worker": {
"types": "./dist/src/e2ee/worker/e2ee.worker.d.ts",
"import": "./dist/livekit-client.e2ee.worker.mjs",
"require": "./dist/livekit-client.e2ee.worker.js"
}
},
"files": [
"dist",
"src"
],
"types": "dist/src/index.d.ts",
"typesVersions": {
"<4.8": {
"./dist/src/index.d.ts": [
"./dist/ts4.2/src/index.d.ts"
],
"./dist/src/e2ee/worker/e2ee.worker.d.ts": [
"./dist/ts4.2//dist/src/e2ee/worker/e2ee.worker.d.ts"
]
}
},
"repository": "git@github.com:dTelecom/client-sdk-js.git",
"license": "Apache-2.0",
"scripts": {
"build": "rollup --config --bundleConfigAsCjs && rollup --config rollup.config.worker.js --bundleConfigAsCjs && yarn downlevel-dts",
"build:watch": "rollup --watch --config rollup.config.js",
"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=outputClientImpl=false,useOptionals=messages,oneof=unions -I./protocol ./protocol/livekit_rtc.proto ./protocol/livekit_models.proto",
"sample": "vite example -c vite.config.js",
"lint": "eslint src",
"test": "jest",
"deploy": "gh-pages -d example/dist",
"format": "prettier --write src example/sample.ts",
"format:check": "prettier --check src",
"release": "yarn build && yarn compat",
"downlevel-dts": "downlevel-dts ./dist/ ./dist/ts4.2 --to=4.2",
"compat": "eslint --no-eslintrc --config ./.eslintrc.dist.cjs ./dist/livekit-client.umd.js",
"size-limit": "size-limit"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"loglevel": "^1.8.0",
"protobufjs": "^7.2.5",
"sdp-transform": "^2.14.1",
"ts-debounce": "^4.0.0",
"webrtc-adapter": "^8.1.1"
},
"devDependencies": {
"@babel/core": "7.22.1",
"@babel/preset-env": "7.22.4",
"@changesets/cli": "2.26.1",
"@livekit/changesets-changelog-github": "^0.0.4",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "24.1.0",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-terser": "^0.4.0",
"@size-limit/file": "^8.2.4",
"@size-limit/webpack": "^8.2.4",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/events": "^3.0.0",
"@types/jest": "29.5.2",
"@types/sdp-transform": "2.4.6",
"@types/ua-parser-js": "0.7.36",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"downlevel-dts": "^0.11.0",
"eslint": "8.42.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-ecmascript-compat": "^3.0.0",
"eslint-plugin-import": "2.27.5",
"gh-pages": "5.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"rollup": "3.23.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-re": "1.0.7",
"rollup-plugin-typescript2": "0.34.1",
"size-limit": "^8.2.4",
"ts-jest": "29.1.0",
"ts-proto": "1.148.2",
"typedoc": "0.24.8",
"typedoc-plugin-no-inherit": "1.4.0",
"typescript": "5.1.3",
"vite": "4.3.9"
}
}