Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. "patch-package": "6.5.1",
  31. "promise.allsettled": "1.0.4",
  32. "sdp-transform": "2.3.0",
  33. "strophe.js": "1.5.0",
  34. "strophejs-plugin-disco": "0.0.2",
  35. "strophejs-plugin-stream-management": "git+https://github.com/jitsi/strophejs-plugin-stream-management#679be5902097ed612fb5062b5549f3f32b6f5f47",
  36. "uuid": "8.1.0",
  37. "webrtc-adapter": "8.1.1"
  38. },
  39. "devDependencies": {
  40. "@babel/core": "7.16.0",
  41. "@babel/eslint-parser": "7.16.0",
  42. "@babel/preset-env": "7.16.0",
  43. "@babel/preset-typescript": "7.16.7",
  44. "@jitsi/eslint-config": "4.1.4",
  45. "@types/async": "3.2.12",
  46. "@types/jasmine": "4.0.3",
  47. "@types/sdp-transform": "2.4.5",
  48. "babel-loader": "8.2.3",
  49. "core-js": "3.19.1",
  50. "eslint": "8.1.0",
  51. "eslint-plugin-import": "2.25.2",
  52. "jasmine-core": "4.2.0",
  53. "karma": "6.4.0",
  54. "karma-chrome-launcher": "3.1.1",
  55. "karma-jasmine": "5.1.0",
  56. "karma-sourcemap-loader": "0.3.8",
  57. "karma-webpack": "5.0.0",
  58. "process": "0.11.10",
  59. "string-replace-loader": "3.0.3",
  60. "typescript": "4.3.5",
  61. "webpack": "5.76.0",
  62. "webpack-bundle-analyzer": "4.4.2",
  63. "webpack-cli": "4.9.0"
  64. },
  65. "scripts": {
  66. "build": "npm run build:webpack && npm run build:tsc",
  67. "build:webpack": "LIB_JITSI_MEET_COMMIT_HASH=$(git rev-parse --short HEAD 2>/dev/null) webpack",
  68. "build:webpack-dev": "webpack --mode development",
  69. "build:tsc": "tsc --build --clean && tsc",
  70. "gen-types": "tsc --declaration --declarationDir types/auto --emitDeclarationOnly",
  71. "lint": "eslint .",
  72. "lint-fix": "eslint . --fix",
  73. "postinstall": "patch-package",
  74. "prepack": "npm run build && npm run gen-types",
  75. "test": "karma start karma.conf.js",
  76. "test-watch": "karma start karma.conf.js --no-single-run",
  77. "validate": "npm ls",
  78. "watch": "webpack --config webpack.config.js --watch --mode development"
  79. },
  80. "browser": "dist/umd/lib-jitsi-meet.min.js",
  81. "module": "dist/esm/JitsiMeetJS.js",
  82. "files": [
  83. "dist",
  84. "types"
  85. ],
  86. "license": "Apache-2.0"
  87. }