Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

package.json 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.2.1",
  20. "@jitsi/logger": "2.0.2",
  21. "@jitsi/rtcstats": "9.7.0",
  22. "@jitsi/sdp-interop": "git+https://github.com/jitsi/sdp-interop#3d49eb4aa26863a3f8d32d7581cdb4321244266b",
  23. "@testrtc/watchrtc-sdk": "1.38.2",
  24. "async-es": "3.2.4",
  25. "base64-js": "1.3.1",
  26. "current-executing-script": "0.1.3",
  27. "jquery": "3.6.1",
  28. "lodash.clonedeep": "4.5.0",
  29. "lodash.debounce": "4.0.8",
  30. "lodash.isequal": "4.5.0",
  31. "patch-package": "6.5.1",
  32. "promise.allsettled": "1.0.4",
  33. "sdp-transform": "2.3.0",
  34. "strophe.js": "1.5.0",
  35. "strophejs-plugin-disco": "0.0.2",
  36. "strophejs-plugin-stream-management": "git+https://github.com/jitsi/strophejs-plugin-stream-management#679be5902097ed612fb5062b5549f3f32b6f5f47",
  37. "uuid": "8.1.0",
  38. "webrtc-adapter": "8.1.1"
  39. },
  40. "devDependencies": {
  41. "@babel/core": "7.16.0",
  42. "@babel/eslint-parser": "7.16.0",
  43. "@babel/preset-env": "7.16.0",
  44. "@babel/preset-typescript": "7.16.7",
  45. "@jitsi/eslint-config": "4.1.4",
  46. "@types/async": "3.2.12",
  47. "@types/jasmine": "4.0.3",
  48. "@types/sdp-transform": "2.4.5",
  49. "babel-loader": "8.2.3",
  50. "core-js": "3.19.1",
  51. "eslint": "8.1.0",
  52. "eslint-plugin-import": "2.25.2",
  53. "jasmine-core": "4.2.0",
  54. "karma": "6.4.0",
  55. "karma-chrome-launcher": "3.1.1",
  56. "karma-jasmine": "5.1.0",
  57. "karma-sourcemap-loader": "0.3.8",
  58. "karma-webpack": "5.0.0",
  59. "process": "0.11.10",
  60. "string-replace-loader": "3.0.3",
  61. "typescript": "4.3.5",
  62. "webpack": "5.76.0",
  63. "webpack-bundle-analyzer": "4.4.2",
  64. "webpack-cli": "4.9.0"
  65. },
  66. "scripts": {
  67. "build": "npm run build:webpack && npm run build:tsc",
  68. "build:webpack": "webpack",
  69. "build:webpack-dev": "webpack --mode development",
  70. "build:tsc": "tsc --build --clean && tsc",
  71. "gen-types": "tsc --declaration --emitDeclarationOnly --out types/index.d.ts",
  72. "lint": "eslint .",
  73. "lint-fix": "eslint . --fix",
  74. "postinstall": "patch-package",
  75. "prepack": "npm run build && npm run gen-types",
  76. "test": "karma start karma.conf.js",
  77. "test-watch": "karma start karma.conf.js --no-single-run",
  78. "validate": "npm ls",
  79. "watch": "webpack --config webpack.config.js --watch --mode development"
  80. },
  81. "browser": "dist/umd/lib-jitsi-meet.min.js",
  82. "module": "dist/esm/JitsiMeetJS.js",
  83. "files": [
  84. "dist",
  85. "types",
  86. "index.d.ts"
  87. ],
  88. "license": "Apache-2.0"
  89. }