forked from jitsi/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.35 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.35 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": "lib-meet",
"version": "1.0.0",
"description": "JS library for accessing Jitsi server side deployments",
"repository": {
"type": "git",
"url": "git://github.com/internxt/lib-meet"
},
"keywords": [
"jingle",
"webrtc",
"xmpp",
"browser"
],
"author": "",
"readmeFilename": "README.md",
"dependencies": {
"@hexagon/base64": "^2.0.4",
"@jitsi/js-utils": "^2.6.7",
"@jitsi/logger": "2.1.1",
"@jitsi/precall-test": "1.0.6",
"@jitsi/rtcstats": "9.7.1",
"@noble/ciphers": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@noble/post-quantum": "^0.5.2",
"@testrtc/watchrtc-sdk": "1.38.2",
"async-es": "3.2.4",
"base64-js": "1.5.1",
"current-executing-script": "0.1.3",
"emoji-regex": "10.4.0",
"jwt-decode": "4.0.0",
"lodash-es": "4.18.1",
"onnxruntime-web": "=1.23.0",
"sdp-transform": "2.3.0",
"strophe.js": "https://github.com/jitsi/strophejs/releases/download/v1.5-jitsi-3/strophe.js-1.5.0.tgz",
"uuid": "14.0.0",
"vodozemac-wasm": "git+https://github.com/internxt/vodozemac-wasm",
"webrtc-adapter": "8.1.1"
},
"devDependencies": {
"@babel/core": "7.25.9",
"@babel/preset-env": "7.25.9",
"@babel/preset-typescript": "7.25.9",
"@jitsi/eslint-config": "6.0.4",
"@types/async": "3.2.12",
"@types/jasmine": "4.0.3",
"@types/lodash-es": "4.17.12",
"@types/sdp-transform": "2.15.0",
"@types/strophe": "1.2.37",
"babel-loader": "8.2.3",
"core-js": "3.19.1",
"eslint": "8.57.0",
"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",
"ts-mockito": "^2.6.1",
"typedoc": "0.28.1",
"typedoc-plugin-missing-exports": "4.1.0",
"typedoc-plugin-no-inherit": "1.6.1",
"typedoc-plugin-rename-defaults": "0.7.3",
"typescript": "5.7.2",
"webpack": "5.105.1",
"webpack-bundle-analyzer": "5.2.0",
"webpack-cli": "6.0.1"
},
"scripts": {
"build": "npm run gen-version && npm run build:webpack && npm run build:tsc",
"build:webpack": "webpack",
"build:webpack-dev": "npm run gen-version && webpack --mode development",
"build:tsc": "tsc --build --clean && tsc",
"gen-types": "tsc --declaration --emitDeclarationOnly --outFile types/index.d.ts",
"gen-version": "node tools/gen-version.js",
"lint": "eslint . --max-warnings 0 && tsc --noEmit",
"lint-fix": "eslint . --max-warnings 0 --fix",
"prepack": "npm run build && npm run gen-types",
"test": "npm run test:native && npm run test:polyfill",
"test:e2e": "npm run test:native -- --grep 'Test E2E'",
"test:native": "karma start karma.conf.js",
"test:polyfill": "karma start karma-polyfill.conf.js",
"test-watch": "karma start karma.conf.js --no-single-run",
"type-check": "tsc --noEmit",
"typedoc": "npm run gen-version && typedoc",
"validate": "npm ls",
"watch": "npm run gen-version && webpack --config webpack.config.js --watch --mode development"
},
"browser": {
"dist/umd/lib-meet.min.js": "dist/umd/lib-meet.min.js",
"vodozemac.wasm": "dist/umd/vodozemac.wasm"
},
"module": "dist/esm/JitsiMeetJS.js",
"react-native": "./dist/esm/JitsiMeetJS.js",
"files": [
"dist",
"types/index.d.ts",
"models"
],
"license": "Apache-2.0"
}