modified lib-jitsi-meet dev repo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "lib-jitsi-meet",
  3. "version": "0.0.0",
  4. "description": "JS library for accessing Jitsi server side deployments",
  5. "repository": {
  6. "type": "git",
  7. "url": "git://github.com/jitsi/lib-jitsi-meet"
  8. },
  9. "keywords": [
  10. "jingle",
  11. "webrtc",
  12. "xmpp",
  13. "browser",
  14. "jitsi"
  15. ],
  16. "author": "",
  17. "readmeFilename": "README.md",
  18. "dependencies": {
  19. "@jitsi/js-utils": "2.0.0",
  20. "@jitsi/logger": "2.0.0",
  21. "@jitsi/sdp-interop": "git+https://github.com/jitsi/sdp-interop#3d49eb4aa26863a3f8d32d7581cdb4321244266b",
  22. "@jitsi/sdp-simulcast": "0.4.0",
  23. "async": "3.2.3",
  24. "base64-js": "1.3.1",
  25. "current-executing-script": "0.1.3",
  26. "jquery": "3.6.1",
  27. "lodash.clonedeep": "4.5.0",
  28. "lodash.debounce": "4.0.8",
  29. "lodash.isequal": "4.5.0",
  30. "promise.allsettled": "1.0.4",
  31. "sdp-transform": "2.3.0",
  32. "strophe.js": "1.3.4",
  33. "strophejs-plugin-disco": "0.0.2",
  34. "strophejs-plugin-stream-management": "git+https://github.com/jitsi/strophejs-plugin-stream-management#001cf02bef2357234e1ac5d163611b4d60bf2b6a",
  35. "uuid": "8.1.0",
  36. "webrtc-adapter": "8.1.1"
  37. },
  38. "devDependencies": {
  39. "@babel/core": "7.16.0",
  40. "@babel/eslint-parser": "7.16.0",
  41. "@babel/preset-env": "7.16.0",
  42. "@babel/preset-typescript": "7.16.7",
  43. "@jitsi/eslint-config": "4.1.4",
  44. "@types/async": "3.2.12",
  45. "@types/jasmine": "4.0.3",
  46. "@types/sdp-transform": "2.4.5",
  47. "babel-loader": "8.2.3",
  48. "core-js": "3.19.1",
  49. "eslint": "8.1.0",
  50. "eslint-plugin-import": "2.25.2",
  51. "jasmine-core": "4.2.0",
  52. "karma": "6.4.0",
  53. "karma-chrome-launcher": "3.1.1",
  54. "karma-jasmine": "5.1.0",
  55. "karma-sourcemap-loader": "0.3.8",
  56. "karma-webpack": "5.0.0",
  57. "process": "0.11.10",
  58. "string-replace-loader": "3.0.3",
  59. "typescript": "4.3.5",
  60. "webpack": "5.57.1",
  61. "webpack-bundle-analyzer": "4.4.2",
  62. "webpack-cli": "4.9.0"
  63. },
  64. "scripts": {
  65. "build": "npm run build:webpack && npm run build:tsc",
  66. "build:webpack": "LIB_JITSI_MEET_COMMIT_HASH=$(git rev-parse --short HEAD 2>/dev/null) webpack",
  67. "build:tsc": "tsc --build --clean && tsc",
  68. "gen-types": "tsc --declaration --declarationDir types/auto --emitDeclarationOnly",
  69. "lint": "eslint .",
  70. "lint-fix": "eslint . --fix",
  71. "prepack": "npm run build && npm run gen-types",
  72. "test": "karma start karma.conf.js",
  73. "test-watch": "karma start karma.conf.js --no-single-run",
  74. "validate": "npm ls",
  75. "watch": "webpack --config webpack.config.js --watch --mode development"
  76. },
  77. "browser": "dist/umd/lib-jitsi-meet.min.js",
  78. "module": "dist/esm/JitsiMeetJS.js",
  79. "files": [
  80. "dist",
  81. "types",
  82. "connection_optimization/external_connect.js",
  83. "modules/browser/capabilities.json"
  84. ],
  85. "license": "Apache-2.0"
  86. }