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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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/precall-test": "1.0.6",
  22. "@jitsi/rtcstats": "9.7.0",
  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-es": "4.17.21",
  29. "sdp-transform": "2.3.0",
  30. "strophe.js": "https://github.com/jitsi/strophejs/releases/download/v1.5-jitsi-3/strophe.js-1.5.0.tgz",
  31. "uuid": "8.1.0",
  32. "webrtc-adapter": "8.1.1"
  33. },
  34. "devDependencies": {
  35. "@babel/core": "7.25.9",
  36. "@babel/preset-env": "7.25.9",
  37. "@babel/preset-typescript": "7.25.9",
  38. "@jitsi/eslint-config": "6.0.3",
  39. "@types/async": "3.2.12",
  40. "@types/jasmine": "4.0.3",
  41. "@types/lodash-es": "4.17.12",
  42. "@types/sdp-transform": "2.4.5",
  43. "@types/strophe": "1.2.37",
  44. "babel-loader": "8.2.3",
  45. "core-js": "3.19.1",
  46. "eslint": "8.57.0",
  47. "jasmine-core": "4.2.0",
  48. "karma": "6.4.0",
  49. "karma-chrome-launcher": "3.1.1",
  50. "karma-jasmine": "5.1.0",
  51. "karma-sourcemap-loader": "0.3.8",
  52. "karma-webpack": "5.0.0",
  53. "process": "0.11.10",
  54. "typedoc": "0.28.1",
  55. "typescript": "5.0.4",
  56. "webpack": "5.98.0",
  57. "webpack-bundle-analyzer": "4.4.2",
  58. "webpack-cli": "4.9.0"
  59. },
  60. "scripts": {
  61. "build": "npm run gen-version && npm run build:webpack && npm run build:tsc",
  62. "build:webpack": "webpack",
  63. "build:webpack-dev": "npm run gen-version && webpack --mode development",
  64. "build:tsc": "tsc --build --clean && tsc",
  65. "gen-types": "tsc --declaration --emitDeclarationOnly --outFile types/index.d.ts",
  66. "gen-version": "node tools/gen-version.js",
  67. "lint": "eslint . --max-warnings 0",
  68. "lint-fix": "eslint . --max-warnings 0 --fix",
  69. "prepack": "npm run build && npm run gen-types",
  70. "test": "karma start karma.conf.js",
  71. "test-watch": "karma start karma.conf.js --no-single-run",
  72. "typedoc": "typedoc",
  73. "validate": "npm ls",
  74. "watch": "npm run gen-version && webpack --config webpack.config.js --watch --mode development"
  75. },
  76. "browser": "dist/umd/lib-jitsi-meet.min.js",
  77. "module": "dist/esm/JitsiMeetJS.js",
  78. "react-native": "./dist/esm/JitsiMeetJS.js",
  79. "files": [
  80. "dist",
  81. "types/index.d.ts"
  82. ],
  83. "license": "Apache-2.0"
  84. }