forked from jitsi/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.84 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
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
{
"name": "lib-jitsi-meet",
"version": "0.0.0",
"description": "JS library for accessing Jitsi server side deployments",
"repository": {
"type": "git",
"url": "git://github.com/jitsi/lib-jitsi-meet"
},
"keywords": [
"jingle",
"webrtc",
"xmpp",
"browser",
"jitsi"
],
"author": "",
"readmeFilename": "README.md",
"dependencies": {
"@jitsi/js-utils": "2.2.1",
"@jitsi/logger": "2.0.2",
"@jitsi/rtcstats": "9.6.0",
"@jitsi/sdp-interop": "git+https://github.com/jitsi/sdp-interop#3d49eb4aa26863a3f8d32d7581cdb4321244266b",
"@jitsi/sdp-simulcast": "0.4.0",
"@testrtc/watchrtc-sdk": "1.36.3",
"async-es": "3.2.4",
"base64-js": "1.3.1",
"current-executing-script": "0.1.3",
"jquery": "3.6.1",
"lodash.clonedeep": "4.5.0",
"lodash.debounce": "4.0.8",
"lodash.isequal": "4.5.0",
"patch-package": "6.5.1",
"promise.allsettled": "1.0.4",
"sdp-transform": "2.3.0",
"strophe.js": "1.5.0",
"strophejs-plugin-disco": "0.0.2",
"strophejs-plugin-stream-management": "git+https://github.com/jitsi/strophejs-plugin-stream-management#679be5902097ed612fb5062b5549f3f32b6f5f47",
"uuid": "8.1.0",
"webrtc-adapter": "8.1.1"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/eslint-parser": "7.16.0",
"@babel/preset-env": "7.16.0",
"@babel/preset-typescript": "7.16.7",
"@jitsi/eslint-config": "4.1.4",
"@types/async": "3.2.12",
"@types/jasmine": "4.0.3",
"@types/sdp-transform": "2.4.5",
"babel-loader": "8.2.3",
"core-js": "3.19.1",
"eslint": "8.1.0",
"eslint-plugin-import": "2.25.2",
"jasmine-core": "4.2.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-jasmine": "5.1.0",
"karma-sourcemap-loader": "0.3.8",
"karma-webpack": "5.0.0",
"process": "0.11.10",
"string-replace-loader": "3.0.3",
"typescript": "4.3.5",
"webpack": "5.76.0",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.9.0"
},
"scripts": {
"build": "npm run build:webpack && npm run build:tsc",
"build:webpack": "LIB_JITSI_MEET_COMMIT_HASH=$(git rev-parse --short HEAD 2>/dev/null) webpack",
"build:webpack-dev": "webpack --mode development",
"build:tsc": "tsc --build --clean && tsc",
"gen-types": "tsc --declaration --declarationDir types/auto --emitDeclarationOnly",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"postinstall": "patch-package",
"prepack": "npm run build && npm run gen-types",
"test": "karma start karma.conf.js",
"test-watch": "karma start karma.conf.js --no-single-run",
"validate": "npm ls",
"watch": "webpack --config webpack.config.js --watch --mode development"
},
"browser": "dist/umd/lib-jitsi-meet.min.js",
"module": "dist/esm/JitsiMeetJS.js",
"files": [
"dist",
"types"
],
"license": "Apache-2.0"
}